Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
a47d1c08d0911f2f49d92b8c6035593a672af436
/
.
/
Lib
/
test
/
badsyntax_future8.py
blob: c167b0933df751a8d34e65639ee9f7092b9b831e [
file
] [
log
] [
blame
]
"""This is a test"""
from
__future__
import
*
def
f
(
x
):
def
g
(
y
):
return
x
+
y
return
g
print
f
(
2
)(
4
)