[Python-checkins] cpython (2.7): fix verb (closes #21174)

benjamin.peterson python-checkins at python.org
Tue Apr 8 01:35:44 CEST 2014


http://hg.python.org/cpython/rev/aff368b58a98
changeset:   90166:aff368b58a98
branch:      2.7
parent:      90159:c5aa95c7b5e5
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Apr 07 19:34:33 2014 -0400
summary:
  fix verb (closes #21174)

files:
  Doc/library/exceptions.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst
--- a/Doc/library/exceptions.rst
+++ b/Doc/library/exceptions.rst
@@ -158,9 +158,9 @@
 
 .. 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
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list