[issue44504] Make docstring quotes consistent in Lib/_collections_abc.py

2021-06-24 Thread Yevhen Kuzmovych
Change by Yevhen Kuzmovych : -- title: Make docstring quotes consistent in Lib -> Make docstring quotes consistent in Lib/_collections_abc.py ___ Python tracker <https://bugs.python.org/issu

[issue44504] Make docstring quotes consistent in Lib

2021-06-24 Thread Yevhen Kuzmovych
Change by Yevhen Kuzmovych : -- title: Make docstring quotes consistent in Lib/_collections_abc.py -> Make docstring quotes consistent in Lib ___ Python tracker <https://bugs.python.org/issu

[issue44504] Make docstring quotes consistent in Lib/_collections_abc.py

2021-06-24 Thread Yevhen Kuzmovych
Change by Yevhen Kuzmovych : -- title: Typo in the docstring of Mapping.get method -> Make docstring quotes consistent in Lib/_collections_abc.py ___ Python tracker <https://bugs.python.org/issu

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

2021-06-24 Thread Yevhen Kuzmovych
Change by Yevhen Kuzmovych : -- status: closed -> open ___ Python tracker <https://bugs.python.org/issue44504> ___ ___ Python-bugs-list mailing list Unsubscrib

[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 <https://bugs.python.org/issue44504> ___ ___ Python-bugs-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: L