From: Facundo Batista Date: Thu, 18 Oct 2007 03:44:48 +0000 (+0000) Subject: Issue 1289, just a typo. X-Git-Tag: v2.6a1~1175 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d97110dd1bdc9a82a9191627c638cffa8118bc80;p=thirdparty%2FPython%2Fcpython.git Issue 1289, just a typo. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 0d46cc6f136d..c773e9b25fe9 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2160,7 +2160,7 @@ to be provided for a context manager object to define a runtime context: .. method:: contextmanager.__exit__(exc_type, exc_val, exc_tb) - Exit the runtime context and return a Boolean flag indicating if any expection + Exit the runtime context and return a Boolean flag indicating if any exception that occurred should be suppressed. If an exception occurred while executing the body of the :keyword:`with` statement, the arguments contain the exception type, value and traceback information. Otherwise, all three arguments are ``None``.