summaryrefslogtreecommitdiff
path: root/Lib/contextlib.py
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36492: Fix passing special keyword arguments to some functions. (GH...Serhiy Storchaka2019-04-011-4/+30
* bpo-30306: release arguments of contextmanager (GH-1500)Martin Teichmann2018-01-281-0/+3
* bpo-29302: Implement contextlib.AsyncExitStack. (#4790)Ilya Kulakov2018-01-251-46/+205
* bpo-30241: implement contextlib.AbstractAsyncContextManager (#1412)Jelle Zijlstra2017-12-131-2/+25
* bpo-10049: Add a "no-op" (null) context manager to contextlib (GH-4464)Jesse-Bakker2017-11-231-1/+22
* bpo-30266: support "= None" pattern in AbstractContextManager (#1448)Jelle Zijlstra2017-06-091-3/+2
* bpo-29679: Implement @contextlib.asynccontextmanager (#360)Jelle Zijlstra2017-04-301-6/+93
* bpo-29692: contextlib.contextmanager may incorrectly unchain RuntimeError (GH...svelankar2017-04-111-6/+6
* Clarify exception handler scope in contextlibamosonn2017-03-011-1/+2
* bpo-27122: Fix comment to point to correct issue number (#47)Nathaniel J. Smith2017-02-121-1/+1
* Issue #27123: When an exception is raised within the context beingGregory P. Smith2016-06-141-0/+3
|\
| * Issue #27123: When an exception is raised within the context beingGregory P. Smith2016-06-141-0/+3
* | Normalize whitespaceBrett Cannon2016-04-081-1/+1
* | Issue #25609: Introduce contextlib.AbstractContextManager andBrett Cannon2016-04-081-11/+31
|/
* Issue #24336: The contextmanager decorator now works with functions withSerhiy Storchaka2015-06-281-3/+3
|\
| * Issue #24336: The contextmanager decorator now works with functions withSerhiy Storchaka2015-06-281-3/+3
* | PEP 479: Change StopIteration handling inside generators.Yury Selivanov2015-05-091-2/+9
* | Issue #22389: Add contextlib.redirect_stderr().Berker Peksag2014-11-281-13/+27
|/
* Merge removal of issue 20317 debugging code from 3.3Nick Coghlan2014-01-241-3/+1
|\
| * Issue 20317: Remove debugging code from contextlibNick Coghlan2014-01-241-3/+1
* | Merge #20317 from 3.3Nick Coghlan2014-01-221-1/+9
|\ \ | |/
| * Issue #20317: Don't create a reference loop in ExitStackNick Coghlan2014-01-221-1/+9
* | Close #19403: make contextlib.redirect_stdout reentrantNick Coghlan2013-11-031-8/+4
* | Close #19330 by using public classes in contextlibNick Coghlan2013-10-261-41/+39
* | contextlib doc updates and refactoringNick Coghlan2013-10-201-29/+52
* | Close #19266: contextlib.ignore -> contextlib.suppressNick Coghlan2013-10-171-4/+4
* | Rename contextlib.ignored() to contextlib.ignore().Raymond Hettinger2013-10-101-3/+3
* | Issue #15805: Add contextlib.redirect_stdout()Raymond Hettinger2013-10-101-1/+39
* | Merge #19092 from 3.3Nick Coghlan2013-10-011-3/+15
|\ \ | |/
| * Close #19092: ExitStack now reraises exceptions from __exit__Nick Coghlan2013-10-011-3/+15
* | #18705: merge with 3.3.Ezio Melotti2013-08-171-1/+1
|\ \ | |/
* | Issue #15806: Add contextlib.ignored().Raymond Hettinger2013-03-101-1/+13
|/
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
|\
* | Close #14969: Improve the handling of exception chaining in contextlib.ExitStackNick Coghlan2012-06-011-3/+13
* | Close #14963: Use an iterative algorithm in contextlib.ExitStack.__exit__ (Pa...Nick Coghlan2012-06-011-26/+15
* | Close #13585: add contextlib.ExitStack to replace the ill-fated contextlib.ne...Nick Coghlan2012-05-211-5/+121
* | remove unused imports (closes #12432)Benjamin Peterson2011-06-281-1/+0
|/
* Remove trailing whitespaceNick Coghlan2011-05-061-2/+2
* Issue #11647: allow contextmanager objects to be used as decorators as descri...Nick Coghlan2011-05-051-4/+24
* Issue #10859: Make `contextlib.GeneratorContextManager` officiallyAntoine Pitrou2011-01-081-2/+2
* Issue 9110. Adding ContextDecorator to contextlib. This enables the creation ...Michael Foord2010-06-301-2/+13
* remove nested from __all__Benjamin Peterson2009-07-011-1/+1
* Removed contextlib.nested()Raymond Hettinger2009-07-011-45/+0
* Merged revisions 73518-73519 via svnmerge fromNick Coghlan2009-06-231-10/+8
* Issue 6256: Fix stacklevel in warning message.Raymond Hettinger2009-06-101-1/+1
* Deprecate contextlib.nested(). The with-statement now provides this function...Raymond Hettinger2009-05-281-0/+3
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-6/+2
* Merged revisions 58742-58816 via svnmerge fromGuido van Rossum2007-11-021-0/+4
* Fix a poorly-translated raise statement in contextlib.Collin Winter2007-09-011-1/+2
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-311-1/+1