diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2012-09-25 19:00:04 (GMT) |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2012-09-25 19:00:04 (GMT) |
commit | 15c88490011743585134436c7ca0f5186e5dd2a3 (patch) | |
tree | ffceb80d5a1126034a25d901783da3e16e4c9a09 | |
parent | 3095f4724ec7ca735dfae5c9bd3925c27688a115 (diff) | |
download | cpython-15c88490011743585134436c7ca0f5186e5dd2a3.zip cpython-15c88490011743585134436c7ca0f5186e5dd2a3.tar.gz cpython-15c88490011743585134436c7ca0f5186e5dd2a3.tar.bz2 |
fix contextlib.ExitStack typo in 3.3's whatsnew.rst
-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 c1c6642..8208f07 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1079,7 +1079,7 @@ collections classes. Aliases for ABCs are still present in the contextlib ---------- -:class:`~collections.ExitStack` now provides a solid foundation for +:class:`~contextlib.ExitStack` now provides a solid foundation for 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 |