summaryrefslogtreecommitdiff
path: root/Lib/contextlib.py
Commit message (Expand)AuthorAgeFilesLines
* Remove markup from docstringNick Coghlan2009-06-231-2/+2
* Issue 6288: Update contextlib.nested() docstring to reflect new documentationNick 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-291-0/+3
* #1748: use functools.wraps instead of rolling own metadata update.Georg Brandl2008-04-301-6/+2
* Fix for bug 1705170 - contextmanager swallowing StopIteration (2.5 backport c...Nick Coghlan2007-11-021-0/+4
* Use try-except-finally in contextlib.Georg Brandl2007-08-231-9/+8
* Finish bringing SVN into line with latest version of PEP 343 by getting rid o...Nick Coghlan2006-05-031-8/+8
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-8/+2
* Fix docstring for contextfactory; mentioned old contextmanager name.Brett Cannon2006-04-291-1/+1
* Move the PEP 343 documentation and implementation closer to theNick Coghlan2006-04-251-14/+17
* Fix contextlib.nested to cope with exit methods raising and handling exceptionsNick Coghlan2006-04-241-1/+4
* Minor clarity edit to contextlib per Guido's request.Phillip J. Eby2006-04-101-2/+2
* Fix typos; enhance comments on patch for SF #1462485.Phillip J. Eby2006-04-031-2/+3
* Fix SF#1462485: StopIteration raised in body of 'with' statement suppressedPhillip J. Eby2006-04-031-1/+3
* Fix contextlib not copying function attributesPhillip J. Eby2006-03-281-0/+1
* More extensive comment on __exit__ handling, per Guido's request.Phillip J. Eby2006-03-251-0/+7
* Fix a problem with @contextmanager not detecting a broken generatorPhillip J. Eby2006-03-251-1/+4
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-6/+5
* Fix a bug in nested() - if one of the sub-context-managers swallows theGuido van Rossum2006-03-011-1/+4
* Updates to the with-statement:Guido van Rossum2006-02-281-0/+138