[Python-Dev] cpython: inspect.Signature: Add 'Signature.from_callable' classmethod. Closes #17373 (original) (raw)
Yury Selivanov yselivanov.ml at gmail.com
Sat Mar 29 18:19:08 CET 2014
- Previous message: [Python-Dev] cpython: inspect.Signature: Add 'Signature.from_callable' classmethod. Closes #17373
- Next message: [Python-Dev] cpython: asyncio.tests: Autodiscover asyncio tests. Patch by Vajrasky Kok. Closes #20668
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Thanks, it's fixed now.
Yury
On 2014-03-28, 10:29 AM, Andrew Svetlov wrote:
And probably the block should be deindented
On Thu, Mar 27, 2014 at 6:48 PM, Antoine Pitrou <solipsis at pitrou.net> wrote: On Thu, 27 Mar 2014 17:12:02 +0100 (CET) yury.selivanov <python-checkins at python.org> wrote:
+ .. classmethod:: Signature.fromcallable(obj) + + Return a :class:
Signature
(or its subclass) object for a given callable +obj
. This method simplifies subclassing of :class:Signature
: + + :: + + class MySignature(Signature): + pass + sig = MySignature.fromcallable(min) + assert isinstance(sig, MySignature) + This needs a "versionadded" tag.Regards Antoine.
Python-Dev mailing list Python-Dev at python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/andrew.svetlov%40gmail.com
- Previous message: [Python-Dev] cpython: inspect.Signature: Add 'Signature.from_callable' classmethod. Closes #17373
- Next message: [Python-Dev] cpython: asyncio.tests: Autodiscover asyncio tests. Patch by Vajrasky Kok. Closes #20668
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]