diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-04-07 23:34:33 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-04-07 23:34:33 (GMT) |
commit | 222ef828277f99dc6234f1421bf40724cd9167f8 (patch) | |
tree | ba0c5f8a8d84dec985e9e79914a03e91a6520771 | |
parent | 1fd03a4a22a9419dcbad70cf32afebfe5ae390cd (diff) | |
download | cpython-222ef828277f99dc6234f1421bf40724cd9167f8.zip cpython-222ef828277f99dc6234f1421bf40724cd9167f8.tar.gz cpython-222ef828277f99dc6234f1421bf40724cd9167f8.tar.bz2 |
fix verb (closes #21174)
-rw-r--r-- | Doc/library/exceptions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index 329fdd5..0642a13 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -161,7 +161,7 @@ The following exceptions are the exceptions that are usually raised. .. exception:: GeneratorExit - Raise when a :term:`generator`\'s :meth:`close` method is called. It + Raised when a :term:`generator`\'s :meth:`close` method is called. It directly inherits from :exc:`BaseException` instead of :exc:`Exception` since it is technically not an error. |