[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-08-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution David! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-08-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 35f9bccd8198330579ecb4b4c503062f8b5da130 by Serhiy Storchaka (David H) in branch '2.7': [2.7] bpo-37730: Fix usage of NotImplemented instead of NotImplementedError in docs. (GH-15062). (GH-15133) https://github.com/python/cpython/commit/35f9b

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-08-05 Thread David Heiberg
Change by David Heiberg : -- pull_requests: +14872 pull_request: https://github.com/python/cpython/pull/15133 ___ Python tracker ___ ___

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-08-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 8cd630578451a062dcf46fbb21274520ae36c399 by Serhiy Storchaka in branch '3.7': [3.7] bpo-37730: Fix usage of NotImplemented instead of NotImplementedError in docs. (GH-15062). (GH-15106) https://github.com/python/cpython/commit/8cd630578451a06

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-08-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +14848 pull_request: https://github.com/python/cpython/pull/15106 ___ Python tracker ___

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-08-04 Thread miss-islington
miss-islington added the comment: New changeset dd5f8abb54923bf2efea51b7a553ca1fca9cad68 by Miss Islington (bot) in branch '3.8': bpo-37730: Fix usage of NotImplemented instead of NotImplementedError in docs. (GH-15062) https://github.com/python/cpython/commit/dd5f8abb54923bf2efea51b7a553ca1

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-07-31 Thread miss-islington
Change by miss-islington : -- pull_requests: +14812 pull_request: https://github.com/python/cpython/pull/15063 ___ Python tracker ___ __

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-07-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset ed5e8e06cbf766e89d6c58a882ee024abb5b2ed7 by Serhiy Storchaka (David H) in branch 'master': bpo-37730: Fix usage of NotImplemented instead of NotImplementedError in docs. (GH-15062) https://github.com/python/cpython/commit/ed5e8e06cbf766e89d6c

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-07-31 Thread David Heiberg
Change by David Heiberg : -- keywords: +patch pull_requests: +14811 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15062 ___ Python tracker ___ __

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-07-31 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-07-31 Thread David Heiberg
David Heiberg added the comment: Super, thanks for the help, I'll submit a PR as soon as it is ready -- ___ Python tracker ___ ___

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-07-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Create a PR for master. When it be merged it can be backported automatically to other branches. Sometimes it may require manually backporting, but changes should be merged to master first. -- ___ Python tracker

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-07-31 Thread David Heiberg
David Heiberg added the comment: I'm happy to take a look at this, I found one example here: https://docs.python.org/3/library/winreg.html#winreg.DisableReflectionKey How would I go about submitting a patch for all of the docs across the versions? Would I apply the patch to the relevant bran

[issue37730] NotImplemented is used instead of NotImplementedError in docs

2019-07-31 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : In some places in the documentation NotImplemented is used instead of correct NotImplementedError. All occurrences of NotImplemented should be manually checked and wrong spelling should be corrected. -- assignee: docs@python components: Document