summaryrefslogtreecommitdiff
path: root/Lib/test/test_set.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2008-03-25 06:35:10 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2008-03-25 06:35:10 +0000
commit70e9b7b2e26be2382c9aadb4a3d22e3d89e4dc91 (patch)
tree3417f92e6dad88fda8191dc7339e079a172ea5c9 /Lib/test/test_set.py
parentf43af58063aa088fa6493bb00e9136e64580ee2e (diff)
downloadcpython-70e9b7b2e26be2382c9aadb4a3d22e3d89e4dc91.tar.gz
Don't try to close a non-open file.
Don't let file removal cause the test to fail.
Diffstat (limited to 'Lib/test/test_set.py')
-rw-r--r--Lib/test/test_set.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py
index 3d09d87fdb..6b3df3dd65 100644
--- a/Lib/test/test_set.py
+++ b/Lib/test/test_set.py
@@ -283,15 +283,15 @@ class TestJointOps(unittest.TestCase):
w = ReprWrapper()
s = self.thetype([w])
w.value = s
+ fo = open(test_support.TESTFN, "wb")
try:
- fo = open(test_support.TESTFN, "wb")
print >> fo, s,
fo.close()
fo = open(test_support.TESTFN, "rb")
self.assertEqual(fo.read(), repr(s))
finally:
fo.close()
- os.remove(test_support.TESTFN)
+ test_support.unlink(test_support.TESTFN)
def test_do_not_rehash_dict_keys(self):
n = 10
@@ -626,15 +626,15 @@ class TestBasicOps(unittest.TestCase):
self.assertEqual(repr(self.set), self.repr)
def test_print(self):
+ fo = open(test_support.TESTFN, "wb")
try:
- fo = open(test_support.TESTFN, "wb")
print >> fo, self.set,
fo.close()
fo = open(test_support.TESTFN, "rb")
self.assertEqual(fo.read(), repr(self.set))
finally:
fo.close()
- os.remove(test_support.TESTFN)
+ test_support.unlink(test_support.TESTFN)
def test_length(self):
self.assertEqual(len(self.set), self.length)