Change a variable type to avoid signed overflow; replace repeated '19999' constant...
[python.git] / Lib / test / test_future2.py
blob79eb73179de1ecc43d4cd4e365ce586d7668d1f1
1 """This is a test"""
3 from __future__ import nested_scopes; import string
5 def f(x):
6 def g(y):
7 return x + y
8 return g
10 result = f(2)(4)