[Python-checkins] cpython (merge 3.3 -> 3.4): merge 3.3

benjamin.peterson python-checkins at python.org
Tue Jun 17 08:16:54 CEST 2014


http://hg.python.org/cpython/rev/fceb3a907260
changeset:   91238:fceb3a907260
branch:      3.4
parent:      91234:5ccb6901cf95
parent:      91237:7417d8854f93
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Jun 16 23:16:31 2014 -0700
summary:
  merge 3.3

files:
  Lib/test/test_httpservers.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -487,7 +487,7 @@
 
     def test_urlquote_decoding_in_cgi_check(self):
         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))
 
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list