Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
88768483235beb5de12addee3d73d4e252f6f7cb
/
.
/
Lib
/
test
/
test_future3.py
blob: 8f8c2749851fc5f4f30e959005581216417a30ed [
file
] [
log
] [
blame
]
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
)