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 louielu
Recipients louielu, serhiy.storchaka, terry.reedy
Date 2017-05-05.07:33:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
And, another case, the __text_signature__ and i.signature() is similar, but not the same:

>>> range.__init__.__text_signature__
'($self, /, *args, **kwargs)'
  ^
>>> str(i.signature(range.__init__))
'(self, /, *args, **kwargs)'

So we can't simply compare-and-eliminate this case.
History
Date User Action Args
2017-05-05 07:33:38louielusetrecipients: + louielu, terry.reedy, serhiy.storchaka
2017-05-05 07:33:38louielusetmessageid: <[email protected]>
2017-05-05 07:33:38louielulinkissue19903 messages
2017-05-05 07:33:37louielucreate