diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-08 04:22:35 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-08 04:22:35 (GMT) |
commit | 27f883687ba01f571ff7cc03a3f03b94030f92ad (patch) | |
tree | df34d183b440813256c4ff5d09b5f45b26448b01 /Lib/test/test_csv.py | |
parent | 0e43db5baa9e1181bfd57accfec8252b049f20dc (diff) | |
download | cpython-27f883687ba01f571ff7cc03a3f03b94030f92ad.zip cpython-27f883687ba01f571ff7cc03a3f03b94030f92ad.tar.gz cpython-27f883687ba01f571ff7cc03a3f03b94030f92ad.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_csv.py')
-rw-r--r-- | Lib/test/test_csv.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py index 97efcb3..aaebabc 100644 --- a/Lib/test/test_csv.py +++ b/Lib/test/test_csv.py @@ -133,7 +133,7 @@ class Test_Csv(unittest.TestCase): finally: fileobj.close() os.unlink(name) - + def _read_test(self, input, expect, **kwargs): reader = csv.reader(input, **kwargs) result = list(reader) @@ -226,7 +226,7 @@ class TestDialectRegistry(unittest.TestCase): finally: fileobj.close() os.unlink(name) - + def test_dialect_apply(self): class testA(csv.excel): delimiter = "\t" @@ -247,7 +247,7 @@ class TestDialectRegistry(unittest.TestCase): finally: fileobj.close() os.unlink(name) - + fd, name = tempfile.mkstemp() fileobj = os.fdopen(fd, "w+b") try: |