[issue20425] inspect.Signature should work on decorated builtins

2014-01-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset a9fedabb69e5 by Yury Selivanov in branch 'default': inspect.signature: Add support for decorated (wrapped) builtins #20425 http://hg.python.org/cpython/rev/a9fedabb69e5 -- nosy: +python-dev ___ Python tra

[issue20425] inspect.Signature should work on decorated builtins

2014-01-29 Thread Yury Selivanov
Yury Selivanov added the comment: Thanks for the review! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Py

[issue20425] inspect.Signature should work on decorated builtins

2014-01-29 Thread Nick Coghlan
Nick Coghlan added the comment: Patch looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue20425] inspect.Signature should work on decorated builtins

2014-01-28 Thread Yury Selivanov
New submission from Yury Selivanov: inspect.signature should work with decorated builtins. Suppose I want to create a cached version of 'min' builtin: cached_min = functools.lru_cache()(min) The signature of the 'cached_min' should match the signature of 'min'. The patch is attached.

[issue20425] inspect.Signature should work on decorated builtins

2014-01-28 Thread Yury Selivanov
Changes by Yury Selivanov : -- keywords: +needs review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://