summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_contextlib.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #7449, last part (11): fix many tests if thread support is disabledVictor Stinner2010-04-271-1/+5
* Replace catch_warnings with check_warnings when it makes sense. Use assertRa...Florent Xicluna2010-03-311-47/+22
* Issue 6292: for the moment at least, the test suite passes if runR. David Murray2010-02-231-1/+11
* Remove unused imports in test modules.Georg Brandl2010-02-071-3/+0
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-10/+10
* Deprecate contextlib.nested(). The with-statement now provides this function...Raymond Hettinger2009-05-291-1/+4
* Remove some from __future__ import with_statementsBenjamin Peterson2008-04-301-1/+0
* Standardize on test.test_support.run_unittest() (as opposed to a mix of run_u...Collin Winter2007-04-251-4/+2
* Remove the old decimal context management tests from test_contextlib (guess w...Nick Coghlan2006-08-311-26/+0
* Finish bringing SVN into line with latest version of PEP 343 by getting rid o...Nick Coghlan2006-05-031-25/+25
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-6/+4
* Move the PEP 343 documentation and implementation closer to theNick Coghlan2006-04-251-23/+23
* Fix broken contextlib test from last checkin (I'd've sworn I tested that befo...Nick Coghlan2006-04-241-0/+2
* Fix contextlib.nested to cope with exit methods raising and handling exceptionsNick Coghlan2006-04-241-0/+23
* DecimalContextTestCase: this permanently changed theTim Peters2006-04-101-9/+13
* test_contextlib wasn't actually being run by regrtest.py. Or more precisely,Phillip J. Eby2006-04-101-1/+9
* Fix contextlib not copying function attributesPhillip J. Eby2006-03-281-0/+15
* Fix a problem with @contextmanager not detecting a broken generatorPhillip J. Eby2006-03-251-0/+22
* Fix a bug in nested() - if one of the sub-context-managers swallows theGuido van Rossum2006-03-011-0/+54
* Updates to the with-statement:Guido van Rossum2006-02-281-0/+240