diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-07-21 01:41:30 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-07-21 01:41:30 (GMT) |
commit | 87cc0c329e9a5181534a9ca9e283669986a32900 (patch) | |
tree | 7cd81d3e13cfb22edd7a02167ddaa00647ea8b1d /Lib/test/test_os.py | |
parent | 3332778f3537cf4c0230146831446aa838a4169e (diff) | |
download | cpython-87cc0c329e9a5181534a9ca9e283669986a32900.zip cpython-87cc0c329e9a5181534a9ca9e283669986a32900.tar.gz cpython-87cc0c329e9a5181534a9ca9e283669986a32900.tar.bz2 |
Whitespace normalization, plus:
+ test_quopri.py relied on significant trailing spaces. Fixed.
+ test_dircache.py (still) doesn't work on Windows (directory mtime on
Windows doesn't work like it does on Unix).
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index c1889e1..470e347 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -52,7 +52,7 @@ class TemporaryFileTests(unittest.TestCase): if not hasattr(os, "tmpnam"): return self.check_tempfile(os.tmpnam()) - + run_unittest(TemporaryFileTests) |