This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients serhiy.storchaka, yselivanov
Date 2015-05-15.06:24:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1431671088.82.0.205930864804.issue24200@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import inspect
>>> def foo(a, *, b=10): pass
... 
>>> inspect.signature(foo)
<Signature at 0xb6e2768c "(a, *, b=10)">

I think the id is not needed in informative repr if you implemented __eq__. Identity doesn't matter if different instances can be equal. The id in the repr only adds a noise.
History
Date User Action Args
2015-05-15 06:24:48serhiy.storchakasetrecipients: + serhiy.storchaka, yselivanov
2015-05-15 06:24:48serhiy.storchakasetmessageid: <1431671088.82.0.205930864804.issue24200@psf.upfronthosting.co.za>
2015-05-15 06:24:48serhiy.storchakalinkissue24200 messages
2015-05-15 06:24:48serhiy.storchakacreate