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 rhettinger, serhiy.storchaka
Date 2018-05-29.07:06:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527577604.06.0.682650639539.issue33677@psf.upfronthosting.co.za>
In-reply-to
Content
The tp_clear handler should be a pointer to the function that returns int.

    typedef int (*inquiry)(PyObject *);

Two handlers in the stdlib (for AST and deque objects) return void instead. The following PR fixes this.
History
Date User Action Args
2018-05-29 07:06:44serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger
2018-05-29 07:06:44serhiy.storchakasetmessageid: <1527577604.06.0.682650639539.issue33677@psf.upfronthosting.co.za>
2018-05-29 07:06:43serhiy.storchakalinkissue33677 messages
2018-05-29 07:06:43serhiy.storchakacreate