
python-checkins at python
Nov 18, 2009, 12:20 PM
Post #1 of 1
(93 views)
Permalink
|
|
r76368 - in python/branches/py3k: Doc/whatsnew/2.7.rst
|
|
Author: georg.brandl Date: Wed Nov 18 19:53:14 2009 New Revision: 76368 Log: Merged revisions 76367 via svnmerge from svn+ssh://pythondev [at] svn/python/trunk ........ r76367 | georg.brandl | 2009-11-18 18:52:35 +0000 (Mi, 18 Nov 2009) | 1 line Make separate section for deprecations in 2.7 whatsnew. ........ Modified: python/branches/py3k/ (props changed) python/branches/py3k/Doc/whatsnew/2.7.rst Modified: python/branches/py3k/Doc/whatsnew/2.7.rst ============================================================================== --- python/branches/py3k/Doc/whatsnew/2.7.rst (original) +++ python/branches/py3k/Doc/whatsnew/2.7.rst Wed Nov 18 19:53:14 2009 @@ -229,8 +229,8 @@ .. ====================================================================== -New, Improved, and Deprecated Modules -===================================== +New and Improved Modules +======================== As in every release, Python's standard library received a number of enhancements and bug fixes. Here's a partial list of the most notable @@ -590,6 +590,14 @@ inclusion in :issue:`2618`, but the authors argued that Guilherme Polo's work was more comprehensive. + +Deprecations and Removals +========================= + +* :func:`contextlib.nested`, which allows handling more than one context manager + with one :keyword:`with` statement, has been deprecated; :keyword:`with` + supports multiple context managers syntactically now. + .. ====================================================================== _______________________________________________ Python-checkins mailing list Python-checkins [at] python http://mail.python.org/mailman/listinfo/python-checkins
|