aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/contextlib.py
Commit message (Expand)AuthorAge
* Close #19403: make contextlib.redirect_stdout reentrantNick Coghlan2013-11-03
* Close #19330 by using public classes in contextlibNick Coghlan2013-10-26
* contextlib doc updates and refactoringNick Coghlan2013-10-20
* Close #19266: contextlib.ignore -> contextlib.suppressNick Coghlan2013-10-17
* Rename contextlib.ignored() to contextlib.ignore().Raymond Hettinger2013-10-10
* Issue #15805: Add contextlib.redirect_stdout()Raymond Hettinger2013-10-10
* Merge #19092 from 3.3Nick Coghlan2013-10-01
|\
| * Close #19092: ExitStack now reraises exceptions from __exit__Nick Coghlan2013-10-01
* | #18705: merge with 3.3.Ezio Melotti2013-08-17
|\|
* | Issue #15806: Add contextlib.ignored().Raymond Hettinger2013-03-10
|/
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-18
|\
* | Close #14969: Improve the handling of exception chaining in contextlib.ExitStackNick Coghlan2012-06-01
* | Close #14963: Use an iterative algorithm in contextlib.ExitStack.__exit__ (Pa...Nick Coghlan2012-06-01
* | Close #13585: add contextlib.ExitStack to replace the ill-fated contextlib.ne...Nick Coghlan2012-05-21
* | remove unused imports (closes #12432)Benjamin Peterson2011-06-28
|/
* Remove trailing whitespaceNick Coghlan2011-05-06
* Issue #11647: allow contextmanager objects to be used as decorators as descri...Nick Coghlan2011-05-05
* Issue #10859: Make `contextlib.GeneratorContextManager` officiallyAntoine Pitrou2011-01-08
* Issue 9110. Adding ContextDecorator to contextlib. This enables the creation ...Michael Foord2010-06-30
* remove nested from __all__Benjamin Peterson2009-07-01
* Removed contextlib.nested()Raymond Hettinger2009-07-01
* Merged revisions 73518-73519 via svnmerge fromNick Coghlan2009-06-23
* Issue 6256: Fix stacklevel in warning message.Raymond Hettinger2009-06-10
* Deprecate contextlib.nested(). The with-statement now provides this function...Raymond Hettinger2009-05-28
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-04
* Merged revisions 58742-58816 via svnmerge fromGuido van Rossum2007-11-02
* Fix a poorly-translated raise statement in contextlib.Collin Winter2007-09-01
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-31
* Merged revisions 57221-57391 via svnmerge fromGuido van Rossum2007-08-24
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-21
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-10
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-27
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-21
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-10
* Fix a bug in nested() - if one of the sub-context-managers swallows theGuido van Rossum2006-03-01
* Updates to the with-statement:Guido van Rossum2006-02-28