summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-24 10:07:45 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-07-24 10:07:45 (GMT)
commitcdb2c601db078e0af2fcca49341a7d17d603e500 (patch)
tree28b93d02eccd97239db5c31a0560be48edddc340
parent0e243612f8ac872931dc00d0eb4f95e5c4226518 (diff)
downloadcpython-cdb2c601db078e0af2fcca49341a7d17d603e500.zip
cpython-cdb2c601db078e0af2fcca49341a7d17d603e500.tar.gz
cpython-cdb2c601db078e0af2fcca49341a7d17d603e500.tar.bz2
test_gettext: use support.rmtree() instead of shutil.rmtree()
-rw-r--r--Lib/test/test_gettext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py
index 5456948..abb312f 100644
--- a/Lib/test/test_gettext.py
+++ b/Lib/test/test_gettext.py
@@ -77,7 +77,7 @@ class GettextBaseTest(unittest.TestCase):
def tearDown(self):
self.env.__exit__()
del self.env
- shutil.rmtree(os.path.split(LOCALEDIR)[0])
+ support.rmtree(os.path.split(LOCALEDIR)[0])
class GettextTestCase1(GettextBaseTest):