summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_dir_util.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-08-31 21:22:27 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-08-31 21:22:27 (GMT)
commitc49a6aa1f004ec8399dfc2a326ccc39b658ec5b4 (patch)
tree9dda3277f1c1125462db93a09441b8dfbd99fd32 /Lib/distutils/tests/test_dir_util.py
parentde993bd9b68f1a1c2a3208e2024c94f99eb6cd05 (diff)
parent1be2e82c57fad3bf8e04cb3e06212752de71ea70 (diff)
downloadcpython-c49a6aa1f004ec8399dfc2a326ccc39b658ec5b4.zip
cpython-c49a6aa1f004ec8399dfc2a326ccc39b658ec5b4.tar.gz
cpython-c49a6aa1f004ec8399dfc2a326ccc39b658ec5b4.tar.bz2
merge 3.4
Diffstat (limited to 'Lib/distutils/tests/test_dir_util.py')
-rw-r--r--Lib/distutils/tests/test_dir_util.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/distutils/tests/test_dir_util.py b/Lib/distutils/tests/test_dir_util.py
index 1589f12..6181ec6 100644
--- a/Lib/distutils/tests/test_dir_util.py
+++ b/Lib/distutils/tests/test_dir_util.py
@@ -2,7 +2,6 @@
import unittest
import os
import stat
-import shutil
import sys
from distutils.dir_util import (mkpath, remove_tree, create_tree, copy_tree,
@@ -52,7 +51,7 @@ class DirUtilTestCase(support.TempdirManager, unittest.TestCase):
self.assertEqual(self._logs, wanted)
@unittest.skipIf(sys.platform.startswith('win'),
- "This test is only appropriate for POSIX-like systems.")
+ "This test is only appropriate for POSIX-like systems.")
def test_mkpath_with_custom_mode(self):
# Get and set the current umask value for testing mode bits.
umask = os.umask(0o002)