summaryrefslogtreecommitdiff
path: root/Cython/Debugger/Tests/codefile
diff options
context:
space:
mode:
Diffstat (limited to 'Cython/Debugger/Tests/codefile')
-rw-r--r--Cython/Debugger/Tests/codefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Cython/Debugger/Tests/codefile b/Cython/Debugger/Tests/codefile
index 6b4c6b6ad..ee587cbb1 100644
--- a/Cython/Debugger/Tests/codefile
+++ b/Cython/Debugger/Tests/codefile
@@ -37,14 +37,13 @@ def outer():
def inner():
b = 2
# access closed over variables
- print a, b
+ print(a, b)
return inner
-
outer()()
spam()
-print "bye!"
+print("bye!")
def use_ham():
ham()