Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
9193491eb36d7edf2e1b51cf5a74d46a7ac314d5
/
.
/
Lib
/
test
/
badsyntax_future9.py
blob: cdce32a4ebbd54a858b486c61e69f7fc701662fa [
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
nested_scopes
,
braces
4
5
def
f
(
x
):
6
def
g
(
y
):
7
return
x
+
y
8
return
g
9
10
print
f
(
2
)(
4
)