Kaydet (Commit) 18da1e1e authored tarafından Jeremy Hylton's avatar Jeremy Hylton

Add test case to cover multiple future statements on separate lines of

a module.
üst 8471a35f
from __future__ import nested_scopes
from __future__ import division
from __future__ import nested_scopes
def f(x):
def g(y):
return y // x
return g
print f(2)(5)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment