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 vstinner
Date 2020-02-07.00:19:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1581034777.27.0.937045301344.issue39573@roundup.psfhosted.org>
In-reply-to
Content
In the limited C API, Py_REFCNT() should be converted to:

static inline Py_ssize_t _Py_REFCNT(const PyObject *ob)
{ return ob->ob_refcnt; }
#define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST(ob))

It would enforce the usage of newly added Py_SET_REFCNT() (PR 18389) and advertise that the object is not modified (const).

That would only be the first step towards a really opaque Py_REFCNT() function.
History
Date User Action Args
2020-02-07 00:19:37vstinnersetrecipients: + vstinner
2020-02-07 00:19:37vstinnersetmessageid: <1581034777.27.0.937045301344.issue39573@roundup.psfhosted.org>
2020-02-07 00:19:37vstinnerlinkissue39573 messages
2020-02-07 00:19:37vstinnercreate