diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-02-11 15:05:34 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-02-11 15:05:34 (GMT) |
commit | a6e902ae35179349b24702f9eb3eb37fb31481b8 (patch) | |
tree | 7bac25414356a5ce311824953f5f576f09e1378c /Lib/test/test_mailbox.py | |
parent | 890d72d3c9896812a4bb07e785b273d1e6b001b0 (diff) | |
parent | 0b61d3c0f2a818355e6bfcbf79c4f47875c10b15 (diff) | |
download | cpython-a6e902ae35179349b24702f9eb3eb37fb31481b8.zip cpython-a6e902ae35179349b24702f9eb3eb37fb31481b8.tar.gz cpython-a6e902ae35179349b24702f9eb3eb37fb31481b8.tar.bz2 |
Merge: #17064: fix sporadic permission errors in test_mailbox on windows.
Patch by Jeremy Kloth.
Diffstat (limited to 'Lib/test/test_mailbox.py')
-rw-r--r-- | Lib/test/test_mailbox.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py index d1cc92e..6c679ce 100644 --- a/Lib/test/test_mailbox.py +++ b/Lib/test/test_mailbox.py @@ -43,9 +43,9 @@ class TestBase: def _delete_recursively(self, target): # Delete a file or delete a directory recursively if os.path.isdir(target): - shutil.rmtree(target) + support.rmtree(target) elif os.path.exists(target): - os.remove(target) + support.unlink(target) class TestMailbox(TestBase): @@ -2112,9 +2112,9 @@ class MaildirTestCase(unittest.TestCase): # create a new maildir mailbox to work with: self._dir = support.TESTFN if os.path.isdir(self._dir): - shutil.rmtree(self._dir) + support.rmtree(self._dir) elif os.path.isfile(self._dir): - os.unlink(self._dir) + support.unlink(self._dir) os.mkdir(self._dir) os.mkdir(os.path.join(self._dir, "cur")) os.mkdir(os.path.join(self._dir, "tmp")) @@ -2124,10 +2124,10 @@ class MaildirTestCase(unittest.TestCase): def tearDown(self): list(map(os.unlink, self._msgfiles)) - os.rmdir(os.path.join(self._dir, "cur")) - os.rmdir(os.path.join(self._dir, "tmp")) - os.rmdir(os.path.join(self._dir, "new")) - os.rmdir(self._dir) + support.rmdir(os.path.join(self._dir, "cur")) + support.rmdir(os.path.join(self._dir, "tmp")) + support.rmdir(os.path.join(self._dir, "new")) + support.rmdir(self._dir) def createMessage(self, dir, mbox=False): t = int(time.time() % 1000000) |