Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
1dbce44b91426712f5a904c8c52fbde21c7bd79c
/
.
/
Lib
/
test
/
badsyntax_future3.py
blob: 166628cc494ee05c587a8778a14fb0a501751ae8 [
file
] [
log
] [
blame
]
Jeremy Hylton
62e2c7e
2001-02-28 17:48:06 +0000
[
diff
] [
blame
]
1
"""This is a test"""
2
from
__future__
import
nested_scopes
3
from
__future__
import
rested_snopes
4
5
def
f
(
x
):
6
def
g
(
y
):
7
return
x
+
y
8
return
g
9
10
print
f
(
2
)(
4
)