summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_csv.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-07-03 18:45:33 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-07-03 18:45:33 (GMT)
commit92843e3c144b3a7a78e1c6b11ec85f06227c42ab (patch)
treea26f3984954f688b5a4da6710f5077b941f42961 /Lib/test/test_csv.py
parent774f83cda4df80ea259d836624a7c3d68ec66495 (diff)
parent37d72b716488250c0128c53601a0f3fab5ea7faf (diff)
downloadcpython-92843e3c144b3a7a78e1c6b11ec85f06227c42ab.zip
cpython-92843e3c144b3a7a78e1c6b11ec85f06227c42ab.tar.gz
cpython-92843e3c144b3a7a78e1c6b11ec85f06227c42ab.tar.bz2
merge heads
Diffstat (limited to 'Lib/test/test_csv.py')
-rw-r--r--Lib/test/test_csv.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py
index 8ca1e62..2cca0e9 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 blind man","as he picked up his hammer and saw"',
+ self.readerAssertEqual('1,2,3,"""I see,"" said the happy man","as he picked up his hammer and saw"',
[['1', '2', '3',
- '"I see," said the blind man',
+ '"I see," said the happy man',
'as he picked up his hammer and saw']])
def test_quoted_nl(self):
input = '''\
1,2,3,"""I see,""
-said the blind man","as he picked up his
+said the happy man","as he picked up his
hammer and saw"
9,8,7,6'''
self.readerAssertEqual(input,
[['1', '2', '3',
- '"I see,"\nsaid the blind man',
+ '"I see,"\nsaid the happy man',
'as he picked up his\nhammer and saw'],
['9','8','7','6']])