Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
194bfb2805abc312878279e13c012d2db87adb2c
/
.
/
Lib
/
test
/
badsyntax_future6.py
blob: 35c14558b8139dd1611315e8279191d19c570f30 [
file
] [
log
] [
blame
]
Jeremy Hylton
62e2c7e
2001-02-28 17:48:06 +0000
[
diff
] [
blame
]
1
"""This is a test"""
2
"this isn't a doc string"
3
from
__future__
import
nested_scopes
4
5
def
f
(
x
):
6
def
g
(
y
):
7
return
x
+
y
8
return
g
9
10
print
f
(
2
)(
4
)