From bba6104b84f04e6988a99a90cb817bbc1161efde Mon Sep 17 00:00:00 2001 From: Jonathan Waltman Date: Wed, 9 Jan 2013 08:37:53 -0600 Subject: Issue #1069: Add failing test for signature formatting of "partial" functions without kwargs. --- tests/test_autodoc.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tests/test_autodoc.py') diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index a93bd7186..7a1d6d7f0 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -182,6 +182,20 @@ def test_format_signature(): # test processing by event handler assert formatsig('method', 'bar', H.foo1, None, None) == '42' + # test functions created via functools.partial + from functools import partial + curried1 = partial(lambda a, b, c: None, 'A') + assert formatsig('function', 'curried1', curried1, None, None) == \ + '(b, c)' + curried2 = partial(lambda a, b, c=42: None, 'A') + assert formatsig('function', 'curried2', curried2, None, None) == \ + '(b, c=42)' + curried3 = partial(lambda a, b, *c: None, 'A') + assert formatsig('function', 'curried3', curried3, None, None) == \ + '(b, *c)' + curried4 = partial(lambda a, b, c=42, *d, **e: None, 'A') + assert formatsig('function', 'curried4', curried4, None, None) == \ + '(b, c=42, *d, **e)' def test_get_doc(): def getdocl(objtype, obj, encoding=None): -- cgit v1.2.1