[issue19140] inspect.Signature.bind() inaccuracies

2014-01-28 Thread Yury Selivanov
Yury Selivanov added the comment: Pushed in 3.4. Yann, thank you for the bug report and the patch! -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue19140] inspect.Signature.bind() inaccuracies

2014-01-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9cb32426d580 by Yury Selivanov in branch 'default': inspect.Signature.bind: Fix pos-only params with defaults; fix *args in named args #19140 http://hg.python.org/cpython/rev/9cb32426d580 -- nosy: +python-dev __

[issue19140] inspect.Signature.bind() inaccuracies

2014-01-28 Thread Yury Selivanov
Changes by Yury Selivanov : -- assignee: -> yselivanov nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue19140] inspect.Signature.bind() inaccuracies

2013-10-01 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue19140] inspect.Signature.bind() inaccuracies

2013-10-01 Thread Yann Kaiser
New submission from Yann Kaiser: A pair of inconsistencies I've found using Signature.bind: (=0).bind() -*> TypeError Letting the default value of a positional-only parameter be used raises a TypeError with message that 'a' was passed by name. (a, *args).bind(a=0, args=1) -> BoundArguments({'a