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
Add better error reporting for MemoryErrors caused by str->float conversions.
[python.git]
/
Lib
/
test
/
badsyntax_future9.py
blob
cdce32a4ebbd54a858b486c61e69f7fc701662fa
1
"""This is a test"""
2
3
from
__future__
import
nested_scopes
,
braces
4
5
def
f
(
x
):
6
def
g
(
y
):
7
return
x
+
y
8
return
g
9
10
print
f
(
2
)(
4
)