Commit 0fd3972a authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.2

parents 6cd1954c 314dc126
...@@ -466,7 +466,7 @@ class CGIHTTPServerTestCase(BaseTestCase): ...@@ -466,7 +466,7 @@ class CGIHTTPServerTestCase(BaseTestCase):
def test_urlquote_decoding_in_cgi_check(self): def test_urlquote_decoding_in_cgi_check(self):
res = self.request('/cgi-bin%2ffile1.py') res = self.request('/cgi-bin%2ffile1.py')
self.assertEqual((b'Hello World\n', 'text/html', 200), self.assertEqual((b'Hello World' + self.linesep, 'text/html', 200),
(res.read(), res.getheader('Content-type'), res.status)) (res.read(), res.getheader('Content-type'), res.status))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment