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
New \grammartoken markup, similar to \token but allowed everywhere.
[python/dscho.git]
/
Lib
/
test
/
test_future3.py
blob
8f8c2749851fc5f4f30e959005581216417a30ed
1
from
__future__
import
nested_scopes
2
from
__future__
import
division
3
from
__future__
import
nested_scopes
4
5
def
f
(
x
):
6
def
g
(
y
):
7
return
y
//
x
8
return
g
9
10
11
print
f
(
2
)(
5
)