summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_future1.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_future1.py')
-rw-r--r--Lib/test/test_future1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_future1.py b/Lib/test/test_future1.py
index b0d2a5c..297c2e0 100644
--- a/Lib/test/test_future1.py
+++ b/Lib/test/test_future1.py
@@ -8,4 +8,4 @@ def f(x):
return x + y
return g
-print f(2)(4)
+result = f(2)(4)