[Python-checkins] cpython: Revert 76452b892838 as per

georg.brandl python-checkins at python.org
Wed Jul 6 07:31:12 CEST 2011


http://hg.python.org/cpython/rev/71a1f53c8203
changeset:   71244:71a1f53c8203
user:        Georg Brandl <georg at python.org>
date:        Wed Jul 06 07:31:38 2011 +0200
summary:
  Revert 76452b892838 as per http://mail.python.org/pipermail/python-dev/2011-July/112243.html.

files:
  Lib/test/test_csv.py |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py
--- a/Lib/test/test_csv.py
+++ b/Lib/test/test_csv.py
@@ -459,20 +459,20 @@
                                  '5', '6']])
 
     def test_quoted_quote(self):
-        self.readerAssertEqual('1,2,3,"""I see,"" said the happy man","as he picked up his hammer and saw"',
+        self.readerAssertEqual('1,2,3,"""I see,"" said the blind man","as he picked up his hammer and saw"',
                                [['1', '2', '3',
-                                 '"I see," said the happy man',
+                                 '"I see," said the blind man',
                                  'as he picked up his hammer and saw']])
 
     def test_quoted_nl(self):
         input = '''\
 1,2,3,"""I see,""
-said the happy man","as he picked up his
+said the blind man","as he picked up his
 hammer and saw"
 9,8,7,6'''
         self.readerAssertEqual(input,
                                [['1', '2', '3',
-                                   '"I see,"\nsaid the happy man',
+                                   '"I see,"\nsaid the blind man',
                                    'as he picked up his\nhammer and saw'],
                                 ['9','8','7','6']])
 

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


More information about the Python-checkins mailing list