diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-22 13:04:42 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-22 13:04:42 (GMT) |
commit | 161ea6a349d7b6720a19708aeceec98ae03770d1 (patch) | |
tree | eb26ea6fcab0333d36fd79fcd8e6fc30f55e6e7f /Doc | |
parent | a497b44238747b03306f67f8134c20dbf762bfa5 (diff) | |
download | cpython-161ea6a349d7b6720a19708aeceec98ae03770d1.zip cpython-161ea6a349d7b6720a19708aeceec98ae03770d1.tar.gz cpython-161ea6a349d7b6720a19708aeceec98ae03770d1.tar.bz2 |
Fix typo
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index bdcd816..c885ff1 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -704,7 +704,7 @@ programmatic manipulation of context managers and similar cleanup functionality. Unlike the previous ``contextlib.nested`` API (which was deprecated and removed), the new API is designed to work correctly regardless of whether context managers acquire their resources in -their ``__init`` method (for example, file objects) or in their +their ``__init__`` method (for example, file objects) or in their ``__enter__`` method (for example, synchronisation objects from the :mod:`threading` module). |