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 <1493969618.09.0.68445399652.issue19903@psf.upfronthosting.co.za>
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: <1493969618.09.0.68445399652.issue19903@psf.upfronthosting.co.za>
2017-05-05 07:33:38louielulinkissue19903 messages
2017-05-05 07:33:37louielucreate