Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
36dacfa49c8385efa59a1f57c3476dfc6e1e15b5
/
.
/
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
)