summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_csv.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-04-24 16:02:54 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-04-24 16:02:54 (GMT)
commit0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a (patch)
tree6d84cc9f2da9f24dd76871e75a80e618fd519a27 /Lib/test/test_csv.py
parent0822ff7ccab0465cf4377176089dfdbabbd0a35b (diff)
downloadcpython-0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a.zip
cpython-0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a.tar.gz
cpython-0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_csv.py')
-rw-r--r--Lib/test/test_csv.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py
index 7ee1fac..3545893 100644
--- a/Lib/test/test_csv.py
+++ b/Lib/test/test_csv.py
@@ -10,7 +10,7 @@ from test.test_support import verbose
class Test_Csv(unittest.TestCase):
"""
- Test the underlying C csv parser in ways that are not appropriate
+ Test the underlying C csv parser in ways that are not appropriate
from the high level interface. Further tests of this nature are done
in TestDialectRegistry.
"""
@@ -38,7 +38,7 @@ class Test_Csv(unittest.TestCase):
obj.dialect.delimiter = '\t'
self.assertEqual(obj.dialect.delimiter, '\t')
self.assertRaises(TypeError, delattr, obj.dialect, 'delimiter')
- self.assertRaises(TypeError, setattr, obj.dialect,
+ self.assertRaises(TypeError, setattr, obj.dialect,
'lineterminator', None)
obj.dialect.escapechar = None
self.assertEqual(obj.dialect.escapechar, None)
@@ -57,14 +57,14 @@ class Test_Csv(unittest.TestCase):
fileobj = StringIO()
writer = csv.writer(fileobj, **kwargs)
writer.writerow(fields)
- self.assertEqual(fileobj.getvalue(),
+ self.assertEqual(fileobj.getvalue(),
expect + writer.dialect.lineterminator)
def test_write_arg_valid(self):
self.assertRaises(csv.Error, self._write_test, None, '')
self._write_test((), '')
self._write_test([None], '""')
- self.assertRaises(csv.Error, self._write_test,
+ self.assertRaises(csv.Error, self._write_test,
[None], None, quoting = csv.QUOTE_NONE)
# Check that exceptions are passed up the chain
class BadList:
@@ -87,7 +87,7 @@ class Test_Csv(unittest.TestCase):
def test_write_quoting(self):
self._write_test(['a','1','p,q'], 'a,1,"p,q"')
- self.assertRaises(csv.Error,
+ self.assertRaises(csv.Error,
self._write_test,
['a','1','p,q'], 'a,1,"p,q"',
quoting = csv.QUOTE_NONE)
@@ -311,15 +311,15 @@ class TestDialectExcel(TestCsvBase):
self.readerAssertEqual(' "a"', [[' "a"']])
def test_quoted(self):
- self.readerAssertEqual('1,2,3,"I think, therefore I am",5,6',
- [['1', '2', '3',
- 'I think, therefore I am',
+ self.readerAssertEqual('1,2,3,"I think, therefore I am",5,6',
+ [['1', '2', '3',
+ 'I think, therefore I am',
'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"',
- [['1', '2', '3',
- '"I see," said the blind man',
+ [['1', '2', '3',
+ '"I see," said the blind man',
'as he picked up his hammer and saw']])
def test_quoted_nl(self):
@@ -329,8 +329,8 @@ 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 blind man',
+ [['1', '2', '3',
+ '"I see,"\nsaid the blind man',
'as he picked up his\nhammer and saw'],
['9','8','7','6']])