summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
Commit message (Expand)AuthorAgeFilesLines
* Make test.test_support.EnvironmentVarGuard behave like a dictionary.Walter Dörwald2009-05-011-11/+25
* Issue #5837: Certain sequences of calls to set() and unset() forWalter Dörwald2009-04-251-15/+17
* Issue 5354: Change API for import_fresh_module() to better support test_warni...Nick Coghlan2009-04-221-14/+48
* Issue 5354: Provide a standardised testing mechanism for doing fresh imports ...Nick Coghlan2009-04-111-7/+48
* Improve test_support.import_module docstring, removeR. David Murray2009-03-311-16/+14
* A few more test skips via import_module, and change import_module toR. David Murray2009-03-311-2/+2
* Change more tests to use import_module for the modules thatR. David Murray2009-03-301-7/+10
* Add import_function method to test.test_support, and modify a number ofR. David Murray2009-03-301-0/+14
* ** is required hereBenjamin Peterson2009-03-261-1/+1
* must pass argument to get expected behavior ;)Benjamin Peterson2009-03-261-1/+1
* fix incorrect auto-translation of TestSkipped -> unittest.SkipTestBenjamin Peterson2009-03-261-1/+1
* fix namingBenjamin Peterson2009-03-261-1/+1
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-14/+4
* add some useful utilities for skipping tests with unittest's new skipping abi...Benjamin Peterson2009-03-261-1/+67
* this can be slightly less uglyBenjamin Peterson2009-03-251-1/+1
* this is better written using assertRaisesBenjamin Peterson2009-03-241-6/+2
* make bad file descriptor tests more robustBenjamin Peterson2009-01-191-0/+12
* Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the te...Nick Coghlan2008-09-111-1/+24
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-091-6/+2
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-021-65/+2
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-311-0/+25
* Backport test.support.fcmp() from 3.0 to silence -3 warnings.Brett Cannon2008-07-311-5/+4
* remove unneeded importBenjamin Peterson2008-07-221-1/+0
* Remove duplicate entry in __all__.Georg Brandl2008-07-181-1/+1
* Make test.test_support.catch_warnings more robust as discussed on python-dev....Nick Coghlan2008-07-131-27/+44
* remove some __getslice__Benjamin Peterson2008-05-271-5/+1
* add __all__ to test_supportBenjamin Peterson2008-05-261-0/+13
* Fixed typo in a comment of test_support.CleanImport.Alexandre Vassalotti2008-05-111-1/+1
* Added test framework for handling module renames.Alexandre Vassalotti2008-05-111-0/+33
* Suppress deprecations for packages as well when usingBrett Cannon2008-05-101-1/+2
* Fix a bug introduced by the addition of the 'record' argument toBrett Cannon2008-05-081-2/+2
* Make test.test_support.catch_warning() take an argument specifying if anyBrett Cannon2008-05-081-5/+6
* The mutex module has been deprecated for removal in 3.0.Brett Cannon2008-05-081-0/+13
* make test_support's captured_output a bit more robust when exceptions happenBenjamin Peterson2008-04-301-2/+4
* spellingSkip Montanaro2008-04-131-1/+1
* Re-implement the 'warnings' module in C. This allows for usage of theBrett Cannon2008-04-121-9/+21
* - Issue #2550: The approach used by client/server code for obtaining portsTrent Nelson2008-04-081-25/+91
* Generalize test.test_support.test_stdout() with a base context manager so thatBrett Cannon2008-04-011-7/+11
* Fix a minor typo in a docstring.Brett Cannon2008-02-251-1/+1
* Create a db_home directory with a unique name so multiple users canNeal Norwitz2008-02-241-0/+9
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
* Let the O/S supply a port if none of the default ports can be used.Neal Norwitz2007-10-141-4/+12
* Port test_frozen to unittest.Georg Brandl2007-08-241-0/+16
* Remove test.test_support.guard_warnings_filter.Brett Cannon2007-08-141-8/+0
* Fix a minor typo in a docstring.Brett Cannon2007-08-141-1/+1
* Fix a bug in test.test_support.open_urlresource().Collin Winter2007-05-091-1/+1
* Import and raise statement cleanup.Collin Winter2007-04-251-17/+9
* Change test_support.have_unicode to use True/False instead of 1/0.Collin Winter2007-04-251-2/+2
* Standardize on test.test_support.run_unittest() (as opposed to a mix of run_u...Collin Winter2007-04-251-12/+11
* Implement a contextmanager test.test_support.catch_warning that canWalter Dörwald2007-04-031-0/+36