summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_httpservers.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7449, last part (11): fix many tests if thread support is disabledVictor Stinner2010-04-271-1/+1
| | | | | | * Use try/except ImportError or test_support.import_module() to import thread and threading modules * Add @unittest.skipUnless(threading, ...) to testcases using threads
* Replace a Lock with a better suited Event.Antoine Pitrou2010-04-251-6/+5
|
* #7668: Fix test_httpservers failure when sys.executable contains non-ASCII ↵Florent Xicluna2010-03-221-2/+12
| | | | bytes.
* Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* ↵Florent Xicluna2010-03-191-30/+30
| | | | and setUp/tearDown.
* (Hopefully) suppress transient refleaks in test_httpservers.Antoine Pitrou2009-10-271-0/+2
|
* Move restoration of the os.environ object into the context manager where it ↵Nick Coghlan2009-10-171-1/+0
| | | | belongs
* Revert changes made to environment in test_httpserversNick Coghlan2009-10-171-3/+6
|
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-2/+2
|
* - Issue #2254: Fix CGIHTTPServer information disclosure. Relative paths areGregory P. Smith2009-04-061-0/+46
| | | | now collapsed within the url properly before looking in cgi_directories.
* Argh, this is the *actual* test that works under Windows.Georg Brandl2008-05-201-9/+12
|
* Activate two more test cases in test_httpservers.Georg Brandl2008-05-201-3/+3
|
* GHOP #134, #171, #137: unit tests for the three HTTPServer modules.Georg Brandl2008-05-181-0/+351