Whitespace normalization.

This commit is contained in:
Tim Peters 2005-01-07 16:01:32 +00:00
parent e4f5600e5c
commit 5a9fb3c415
9 changed files with 44 additions and 47 deletions

View file

@ -33,7 +33,7 @@ class Test_Csv(unittest.TestCase):
self.assertRaises(TypeError, ctor, arg, quoting=None)
# We now allow this, only raising an exception if quoting is needed.
# self.assertRaises(TypeError, ctor, arg, quotechar=None)
# self.assertRaises(TypeError, ctor, arg,
# self.assertRaises(TypeError, ctor, arg,
# quoting=csv.QUOTE_NONE, escapechar=None)
# No longer complains about dialects with invalid attributes [AM]
# class BadDialect: