summaryrefslogtreecommitdiffstats
path: root/Doc/library/stdtypes.rst
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2007-10-18 03:44:48 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2007-10-18 03:44:48 (GMT)
commitd97110dd1bdc9a82a9191627c638cffa8118bc80 (patch)
treedfa87bfc533edafd31b5936ab08f9952bc1ebf5e /Doc/library/stdtypes.rst
parent7066590736bb61b5f67ade490aeee327af4bc6e2 (diff)
downloadcpython-d97110dd1bdc9a82a9191627c638cffa8118bc80.zip
cpython-d97110dd1bdc9a82a9191627c638cffa8118bc80.tar.gz
cpython-d97110dd1bdc9a82a9191627c638cffa8118bc80.tar.bz2
Issue 1289, just a typo.
Diffstat (limited to 'Doc/library/stdtypes.rst')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 0d46cc6..c773e9b 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``.