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_future6.py
blob
5a8b55a02c41bf0dd8193ee17de9f57d96c71b60
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
result
=
f
(
2
)(
4
)