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 vstinner
Recipients Carl.Friedrich.Bolz, Mark.Shannon, mark.dickinson, pablogsal, rhettinger, shihai1991, tim.peters, vstinner
Date 2021-04-07.19:32:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617823944.54.0.720703204615.issue43753@roundup.psfhosted.org>
In-reply-to
Content
PR 25227: I reimplemented Py_Is() as a macro and I added unit tests.

Other added functions simply call Py_Is(), example:

#define Py_IsNone(x) Py_Is(x, Py_None)
History
Date User Action Args
2021-04-07 19:32:24vstinnersetrecipients: + vstinner, tim.peters, rhettinger, mark.dickinson, Carl.Friedrich.Bolz, Mark.Shannon, pablogsal, shihai1991
2021-04-07 19:32:24vstinnersetmessageid: <1617823944.54.0.720703204615.issue43753@roundup.psfhosted.org>
2021-04-07 19:32:24vstinnerlinkissue43753 messages
2021-04-07 19:32:24vstinnercreate