Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
4bf21e28dfb42c2da3d440c2c0d9898cb3196fe1
/
.
/
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
)