Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
5246dbc2a12bf8e64e18efee2fdce02a350bbf09
/
.
/
Lib
/
test
/
badsyntax_future4.py
blob: b5f4c98e922ac229ddbdb23bdff85e2ebedfbd15 [
file
]
"""This is a test"""
import
__future__
from
__future__
import
nested_scopes
def
f
(
x
):
def
g
(
y
):
return
x
+
y
return
g
result
=
f
(
2
)(
4
)