From: Victor Stinner Date: Thu, 24 Jul 2014 10:07:45 +0000 (+0200) Subject: test_gettext: use support.rmtree() instead of shutil.rmtree() X-Git-Tag: v3.5.0a1~1216^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cdb2c601db078e0af2fcca49341a7d17d603e500;p=python test_gettext: use support.rmtree() instead of shutil.rmtree() --- diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py index 5456948ca4..abb312f060 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):