- Got rid of newmodule.c
[python/dscho.git] / Lib / test / badsyntax_future6.py
blob35c14558b8139dd1611315e8279191d19c570f30
1 """This is a test"""
2 "this isn't a doc string"
3 from __future__ import nested_scopes
5 def f(x):
6 def g(y):
7 return x + y
8 return g
10 print f(2)(4)