This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: A typo in the docs for "exception GeneratorExit"
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Zvezdoslovec, docs@python, python-dev
Priority: normal Keywords:

Created on 2014-04-07 21:10 by Zvezdoslovec, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg215717 - (view) Author: Boštjan Mejak (Zvezdoslovec) Date: 2014-04-07 21:10
The docs for the exception GeneratorExit starts like this:
Raise when a generator‘s close() method is called.

The sentece should start with the first word "Raise" to say "Raised". You can find this particular doc sentence on this link: https://docs.python.org/2/library/exceptions.html#exceptions.GeneratorExit

This is a small fix. Just add the letter "d".
msg215721 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-04-07 23:35
New changeset aff368b58a98 by Benjamin Peterson in branch '2.7':
fix verb (closes #21174)
http://hg.python.org/cpython/rev/aff368b58a98

New changeset 33528b9520e6 by Benjamin Peterson in branch '3.4':
fix verb (closes #21174)
http://hg.python.org/cpython/rev/33528b9520e6

New changeset c48164710ed5 by Benjamin Peterson in branch 'default':
merge 3.4 (#21174)
http://hg.python.org/cpython/rev/c48164710ed5
History
Date User Action Args
2022-04-11 14:58:01adminsetgithub: 65373
2014-04-07 23:35:44python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg215721

resolution: fixed
stage: resolved
2014-04-07 21:10:31Zvezdosloveccreate