From be3f851411f54b71251743997c1e8b2485f99de2 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Fri, 16 Mar 2012 01:13:50 -0700 Subject: closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem --- Lib/test/test_httpservers.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/test/test_httpservers.py') diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index e83c048ed9..4d58e4bac3 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -377,6 +377,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'), -- cgit v1.2.1