Sign in
android
/
platform
/
external
/
python
/
49c8a063d2db72232ab22809ff8741232e7523df
/
.
/
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
)