summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index ed37ae8..02ef0ef 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -1671,7 +1671,7 @@ def inherits():
self.ateof = 1
return s
- f = open(TESTFN, 'w')
+ f = file(name=TESTFN, mode='w')
lines = ['a\n', 'b\n', 'c\n']
try:
f.writelines(lines)
@@ -1716,7 +1716,7 @@ def keywords():
else:
raise TestFailed("expected TypeError from bogus keyword "
"argument to %r" % constructor)
-
+
def all():
lists()
dicts()