summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-04-17 04:21:10 +0000
committerBrett Cannon <bcannon@gmail.com>2008-04-17 04:21:10 +0000
commita5a6b140e6e2a7154f7e7e1c50544bffd625b649 (patch)
treec1540e869886b42bd8c4a439d779f7a9ff005543 /Lib/test
parent9c86336d29933bb2366aa0b4b140ad120936e74d (diff)
downloadcpython-a5a6b140e6e2a7154f7e7e1c50544bffd625b649.tar.gz
Have test_coding conditionally remove test files instead of assuming that they
are always there.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_coding.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_coding.py b/Lib/test/test_coding.py
index b7d44784f8..b1664f4f1d 100644
--- a/Lib/test/test_coding.py
+++ b/Lib/test/test_coding.py
@@ -1,6 +1,6 @@
import test.test_support, unittest
-from test.test_support import TESTFN
+from test.test_support import TESTFN, unlink
import os, sys
class CodingTest(unittest.TestCase):
@@ -45,8 +45,8 @@ class CodingTest(unittest.TestCase):
__import__(TESTFN)
finally:
f.close()
- os.remove(TESTFN+".py")
- os.remove(TESTFN+".pyc")
+ unlink(TESTFN+".py")
+ unlink(TESTFN+".pyc")
sys.path.pop(0)
def test_main():