summaryrefslogtreecommitdiff
path: root/testsuite/E22.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/E22.py')
-rw-r--r--testsuite/E22.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/E22.py b/testsuite/E22.py
index 7617eb8..1fa855e 100644
--- a/testsuite/E22.py
+++ b/testsuite/E22.py
@@ -135,8 +135,8 @@ baz(**kwargs)
negative = -1
spam(-1)
-negative
-lambda *args, **kw: (args, kw)
-lambda a, b=h[:], c=0: (a, b, c)
+func1(lambda *args, **kw: (args, kw))
+func2(lambda a, b=h[:], c=0: (a, b, c))
if not -5 < x < +5:
print >>sys.stderr, "x is out of range."
print >> sys.stdout, "x is an integer."