summaryrefslogtreecommitdiff
path: root/Lib/test/test_funcattrs.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_funcattrs.py')
-rw-r--r--Lib/test/test_funcattrs.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/test/test_funcattrs.py b/Lib/test/test_funcattrs.py
index 0591ba607a..e41df9c70a 100644
--- a/Lib/test/test_funcattrs.py
+++ b/Lib/test/test_funcattrs.py
@@ -156,13 +156,13 @@ else: raise TestFailed
del another.func_defaults
def foo():
- pass
+ pass
def bar():
- pass
+ pass
def temp():
- print 1
+ print 1
if foo==bar: raise TestFailed
@@ -172,4 +172,3 @@ d[foo] = 1
foo.func_code = temp.func_code
d[foo]
-