Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
c273f59fb345877b3f752af9bcd45ed90aa90e1d
/
.
/
Lib
/
test
/
test_future_stmt
/
nested_scope.py
blob: a8433a42cbb6b0a28ea14482b624427a46d3bba1 [
file
]
"""This is a test"""
from
__future__
import
nested_scopes
;
import
site
# noqa: F401
def
f
(
x
):
def
g
(
y
):
return
x
+
y
return
g
result
=
f
(
2
)(
4
)