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
Files for 2.1b1 distribution.
[python/dscho.git]
/
Lib
/
test
/
test_future5.py
blob
118620873b28c6915a49416c640223ed5fa74d3e
1
"""This is a test"""
2
from
__future__
import
nested_scopes
3
import
foo
4
from
__future__
import
nested_scopes
5
6
7
def
f
(
x
):
8
def
g
(
y
):
9
return
x
+
y
10
return
g
11
12
print
f
(
2
)(
4
)