From: Georg Brandl Date: Wed, 6 Jul 2011 05:31:38 +0000 (+0200) Subject: Revert 76452b892838 as per http://mail.python.org/pipermail/python-dev/2011-July... X-Git-Tag: v3.3.0a1~1939 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd9f1203a40ae1ecd5d29b95c7a733c3077861c6;p=thirdparty%2FPython%2Fcpython.git Revert 76452b892838 as per http://mail.python.org/pipermail/python-dev/2011-July/112243.html. --- diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py index 2cca0e964c5d..8ca1e62c4ae0 100644 --- a/Lib/test/test_csv.py +++ b/Lib/test/test_csv.py @@ -459,20 +459,20 @@ class TestDialectExcel(TestCsvBase): '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']])