ref: 4bb9e229bcb23826a0fde907667c8fd6565d98d2
dir: /sys/lib/python/test/badsyntax_future6.py/
"""This is a test"""
"this isn't a doc string"
from __future__ import nested_scopes
def f(x):
def g(y):
return x + y
return g
result = f(2)(4)