Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
cc48bf0fde8025d60a577a86bcb68cfd472e0c79
/
.
/
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
)