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 methane
Recipients SylvainDe, methane, serhiy.storchaka, steven.daprano, vstinner, xtreak, yselivanov
Date 2019-02-19.09:26:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1550568418.99.0.436620978118.issue36026@roundup.psfhosted.org>
In-reply-to
Content
Is this make sense?

>>> set.add(0)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: descriptor 'add' for type 'set' doesn't apply to type 'int'
>>> set.add.__get__(0)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: descriptor 'add' for type 'set' doesn't apply to type 'int'
History
Date User Action Args
2019-02-19 09:26:59methanesetrecipients: + methane, vstinner, steven.daprano, serhiy.storchaka, yselivanov, SylvainDe, xtreak
2019-02-19 09:26:58methanesetmessageid: <1550568418.99.0.436620978118.issue36026@roundup.psfhosted.org>
2019-02-19 09:26:58methanelinkissue36026 messages
2019-02-19 09:26:58methanecreate