Sign in
android
/
toolchain
/
python
/
ae84a862898faeca900605c016751ee46a431ebc
/
.
/
Python-2.7.5
/
Lib
/
test
/
badsyntax_future8.py
blob: c167b0933df751a8d34e65639ee9f7092b9b831e [
file
] [
log
] [
blame
]
"""This is a test"""
from
__future__
import
*
def
f
(
x
):
def
g
(
y
):
return
x
+
y
return
g
print
f
(
2
)(
4
)