projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1abd25
)
Fix a potential NameError.
author
Thomas Heller
<theller@ctypes.org>
Tue, 15 Jul 2008 17:14:09 +0000
(17:14 +0000)
committer
Thomas Heller
<theller@ctypes.org>
Tue, 15 Jul 2008 17:14:09 +0000
(17:14 +0000)
Lib/test/test_set.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_set.py
b/Lib/test/test_set.py
index f263a7dba32790d8126411f1c1574e4b62e0cb0b..0e9255149a21484a9bd15f01489a9dccd240e3f8 100644
(file)
--- a/
Lib/test/test_set.py
+++ b/
Lib/test/test_set.py
@@
-297,8
+297,8
@@
class TestJointOps(unittest.TestCase):
w = ReprWrapper()
s = self.thetype([w])
w.value = s
+ fo = open(support.TESTFN, "w")
try:
- fo = open(support.TESTFN, "w")
fo.write(str(s))
fo.close()
fo = open(support.TESTFN, "r")