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 | c0f5063031dcc56fbff55ed18472c5d600dc666b (patch) | |
tree | 4c23a06432a98d493c9383d5cb547e048b2e4953 /Doc/library/exceptions.rst | |
parent | eb6a101dd033e9d1a22f3b9383067dc0aeec1a77 (diff) | |
download | cpython-c0f5063031dcc56fbff55ed18472c5d600dc666b.zip cpython-c0f5063031dcc56fbff55ed18472c5d600dc666b.tar.gz cpython-c0f5063031dcc56fbff55ed18472c5d600dc666b.tar.bz2 |
fix verb (closes #21174)
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r-- | Doc/library/exceptions.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index e3e6536..9943b9a 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -158,9 +158,9 @@ The following exceptions are the exceptions that are actually raised. .. exception:: GeneratorExit - Raise when a :term:`generator`\'s :meth:`close` method is called. It - directly inherits from :exc:`BaseException` instead of :exc:`StandardError` since - it is technically not an error. + Raised when a :term:`generator`\'s :meth:`close` method is called. It + directly inherits from :exc:`BaseException` instead of :exc:`StandardError` + since it is technically not an error. .. versionadded:: 2.5 |