Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
e8889c5741b636aa798757eb5500d304b1704344
/
.
/
Lib
/
test
/
badsyntax_future8.py
blob: c167b0933df751a8d34e65639ee9f7092b9b831e [
file
] [
log
] [
blame
]
Neal Norwitz
328f338
2003-12-13 22:43:34 +0000
[
diff
] [
blame
]
1
"""This is a test"""
2
3
from
__future__
import
*
4
5
def
f
(
x
):
6
def
g
(
y
):
7
return
x
+
y
8
return
g
9
10
print
f
(
2
)(
4
)