diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-07-31 01:46:03 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-07-31 01:46:03 (GMT) |
commit | 6458452c8a2164494a200eb678047a7296724af2 (patch) | |
tree | 5d91dc46054d56ff4a1d8c2a5f6e95f28806a99a /Lib | |
parent | 5b654ea774895906edd98ca2dce462e0b587db3a (diff) | |
download | cpython-6458452c8a2164494a200eb678047a7296724af2.zip cpython-6458452c8a2164494a200eb678047a7296724af2.tar.gz cpython-6458452c8a2164494a200eb678047a7296724af2.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_shutil.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 79da538..df35abf 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -74,7 +74,7 @@ class TestShutil(unittest.TestCase): except: pass - + def test_copytree_simple(self): src_dir = tempfile.mkdtemp() dst_dir = os.path.join(tempfile.mkdtemp(), 'destination') @@ -99,8 +99,8 @@ class TestShutil(unittest.TestCase): os.removedirs(dst_dir) except: pass - - + + if hasattr(os, "symlink"): def test_dont_copy_file_onto_link_to_itself(self): # bug 851123. |