repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move sections
[python/dscho.git]
/
Lib
/
test
/
badsyntax_future7.py
blob
131db2c2164cf27164b8a062a9379c87d29ed681
1
"""This is a test"""
2
3
from
__future__
import
nested_scopes
;
import
string
;
from
__future__
import
\
4
nested_scopes
5
6
def
f
(
x
):
7
def
g
(
y
):
8
return
x
+
y
9
return
g
10
11
result
=
f
(
2
)(
4
)