commit | 51a65c91611aa7deb222f24ad2c94021910b7a54 | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <senthil@uthcode.com> | Fri Mar 16 01:07:16 2012 -0700 |
committer | Senthil Kumaran <senthil@uthcode.com> | Fri Mar 16 01:07:16 2012 -0700 |
tree | dad4b18b2634db8ebaaed68dfab9200894e07e76 | |
parent | 4c59211bd5b136880bb3b5c6aef033e2b62c1019 [diff] |
2.7 - Issue #10484: Fix the CGIHTTPServer's PATH_INFO handling problem
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index 97abdf5..a7752d9 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py
@@ -429,6 +429,7 @@ '/.//': ('/', ''), 'cgi-bin/file1.py': ('/cgi-bin', 'file1.py'), '/cgi-bin/file1.py': ('/cgi-bin', 'file1.py'), + '/cgi-bin/file1.py/PATH-INFO': ('/cgi-bin', 'file1.py/PATH-INFO'), 'a': ('/', 'a'), '/a': ('/', 'a'), '//a': ('/', 'a'),