repo.or.cz
/
python.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Issue #7295: Do not use a hardcoded file name in test_tarfile.
[python.git]
/
Lib
/
test
/
badsyntax_future3.py
blob
f1c8417edaa297388bf9b243d6556c738a30abc8
1
"""This is a test"""
2
from
__future__
import
nested_scopes
3
from
__future__
import
rested_snopes
4
5
def
f
(
x
):
6
def
g
(
y
):
7
return
x
+
y
8
return
g
9
10
result
=
f
(
2
)(
4
)