summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_httpservers.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-03-16 08:07:16 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-03-16 08:07:16 (GMT)
commit51a65c91611aa7deb222f24ad2c94021910b7a54 (patch)
treedad4b18b2634db8ebaaed68dfab9200894e07e76 /Lib/test/test_httpservers.py
parent4c59211bd5b136880bb3b5c6aef033e2b62c1019 (diff)
downloadcpython-51a65c91611aa7deb222f24ad2c94021910b7a54.zip
cpython-51a65c91611aa7deb222f24ad2c94021910b7a54.tar.gz
cpython-51a65c91611aa7deb222f24ad2c94021910b7a54.tar.bz2
2.7 - Issue #10484: Fix the CGIHTTPServer's PATH_INFO handling problem
Diffstat (limited to 'Lib/test/test_httpservers.py')
-rw-r--r--Lib/test/test_httpservers.py1
1 files changed, 1 insertions, 0 deletions
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 @@ class CGIHTTPServerTestCase(BaseTestCase):
'/.//': ('/', ''),
'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'),