SF #736962, port test_future to unittest, add a bit more coverage, by Walter Dörwald

This commit is contained in:
Neal Norwitz 2003-12-13 22:43:34 +00:00
parent 378f7b5dca
commit 328f338196
11 changed files with 101 additions and 47 deletions

View file

@ -0,0 +1,10 @@
"""This is a test"""
from __future__ import *
def f(x):
def g(y):
return x + y
return g
print f(2)(4)