summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_httpservers.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue 10484 - Incorporate improvements to CGI module - Suggested by Glenn ↵Senthil Kumaran2012-04-111-36/+38
| | | | Linderman. Refactor code and tests
* fix the incorrect changes made for PATH_INFO value - Issue10484Senthil Kumaran2012-04-101-1/+1
|
* 2.7 - Issue #10484: Fix the CGIHTTPServer's PATH_INFO handling problemSenthil Kumaran2012-03-161-0/+1
|
* Issue #13308: Fix test_httpservers failures when run as root.Charles-François Natali2011-11-021-2/+7
|
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
|
* svnmerge fooled me. That test class already existed.Antoine Pitrou2010-12-161-88/+9
|
* Merged revisions 87317 via svnmerge fromAntoine Pitrou2010-12-161-0/+109
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87317 | antoine.pitrou | 2010-12-16 17:48:36 +0100 (jeu., 16 déc. 2010) | 4 lines Issue #10714: Limit length of incoming request in http.server to 65536 bytes for security reasons. Initial patch by Ross Lagerwall. ........ (also backported some tests)
* Merged revisions 86006 via svnmerge fromBrian Curtin2010-10-311-0/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86006 | brian.curtin | 2010-10-30 19:34:23 -0500 (Sat, 30 Oct 2010) | 3 lines Fix ResourceWarning for an unclosed socket. test_return_header_keep_alive - Added a cleanup call for the socket. ........
* Merged revisions 85202 via svnmerge fromSenthil Kumaran2010-10-031-0/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85202 | senthil.kumaran | 2010-10-03 23:25:45 +0530 (Sun, 03 Oct 2010) | 4 lines Fix Issue9272 - Change CGIHTTPServer to give the child program a copy of os.environ ........
* Added BaseHTTPRequestHandler related tests.Senthil Kumaran2010-09-301-4/+82
|
* 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