[issue35609] Improve of abc.py docstring

2019-01-04 Thread Emmanuel Arias
Emmanuel Arias added the comment: > No plan for removal. See https://bugs.python.org/issue28886#msg282582 Thanks! -- ___ Python tracker ___

[issue35609] Improve of abc.py docstring

2019-01-02 Thread INADA Naoki
INADA Naoki added the comment: No plan for removal. See https://bugs.python.org/issue28886#msg282582 -- nosy: +inada.naoki ___ Python tracker ___

[issue35609] Improve of abc.py docstring

2019-01-02 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi Serhiy, A little question. Is there a planned version to remove the deprecated? -- ___ Python tracker ___

[issue35609] Improve of abc.py docstring

2018-12-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35609] Improve of abc.py docstring

2018-12-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 5c117dd227e1b4c4f0a62564d8592f1ba45c91eb by Serhiy Storchaka in branch 'master': bpo-35609: Remove examples for deprecated decorators in the abc module. (GH-11355)

[issue35609] Improve of abc.py docstring

2018-12-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +10664, 10665, 10666 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35609] Improve of abc.py docstring

2018-12-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +10664 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35609] Improve of abc.py docstring

2018-12-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +10664, 10665 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35609] Improve of abc.py docstring

2018-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: These examples teach you how to use abstractclassmethod and similar decorators. But first, docstrings are not tutorial, and second, you should not use them in new code at all, because they are deprecated. --

[issue35609] Improve of abc.py docstring

2018-12-29 Thread Emmanuel Arias
Emmanuel Arias added the comment: > Double spaces between sentences increase readability. This is not a bug. hmm ok. I can see other docstring with not double spaces. But I will ignore. > Since abstractclassmethod and like are deprecated and should not be used in > new code, I do not see a

[issue35609] Improve of abc.py docstring

2018-12-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Double spaces between sentences increase readability. This is not a bug. Since abstractclassmethod and like are deprecated and should not be used in new code, I do not see a value of extending their docstrings. Too verbose docstrings make using the module

[issue35609] Improve of abc.py docstring

2018-12-28 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10653, 10654 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue35609] Improve of abc.py docstring

2018-12-28 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10653, 10654, 10655 stage: -> patch review ___ Python tracker ___ ___

[issue35609] Improve of abc.py docstring

2018-12-28 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10653 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing

[issue35609] Improve of abc.py docstring

2018-12-28 Thread Emmanuel Arias
New submission from Emmanuel Arias : Hi! I prepare a little improve. I added some samples usage, some clarification and delete some whitespace unnecessary. Attach patch. Regards -- assignee: docs@python components: Documentation files: 0001-improve-abc.py-docstring.patch keywords: