[issue44504] Typo in the docstring of Mapping.get method

2021-06-24 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 1.0 -> 2.0 pull_requests: +25473 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/26897 ___ Python tracker

[issue44504] Typo in the docstring of Mapping.get method

2021-06-24 Thread Yevhen Kuzmovych
Change by Yevhen Kuzmovych : -- status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue44504] Typo in the docstring of Mapping.get method

2021-06-24 Thread Yevhen Kuzmovych
Change by Yevhen Kuzmovych : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue44504] Typo in the docstring of Mapping.get method

2021-06-24 Thread Yevhen Kuzmovych
New submission from Yevhen Kuzmovych : The comment of `Mapping.get` method should state 'D.get(k[,d]) -> D[k] if k in D else d. d defaults to None.' instead of 'D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.' (note the comma before `else`. -- components: Library (Lib