Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning
[python.git] / Lib / test / badsyntax_future6.py
blob5a8b55a02c41bf0dd8193ee17de9f57d96c71b60
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 result = f(2)(4)