Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning
[python.git] / Lib / test / badsyntax_future8.py
blobc167b0933df751a8d34e65639ee9f7092b9b831e
1 """This is a test"""
3 from __future__ import *
5 def f(x):
6 def g(y):
7 return x + y
8 return g
10 print f(2)(4)