Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
9af7a20caeb2912a05dd0fa07bbb4bfe7fb874e4
/
.
/
Lib
/
test
/
test_future_stmt
/
nested_scope.py
blob: a8433a42cbb6b0a28ea14482b624427a46d3bba1 [
file
] [
log
] [
blame
]
"""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
)