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