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
This commit was manufactured by cvs2svn to create tag 'r211c1'.
[python/dscho.git]
/
Lib
/
test
/
test_future7.py
blob
370372d4596299d2ebc11a244a8f36b83dcb5754
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
print
f
(
2
)(
4
)