Sign in
android
/
platform
/
external
/
python
/
cpython2
/
6c611fae53eeb2e4e5c2db4fc634779fbcdf33eb
/
.
/
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
)