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