消息 [361517]
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. |
|
| 日期 |
用户 |
动作 |
参数 |
| 2020-02-07 00:19:37 | vstinner | 修改 | recipients:
+ vstinner |
| 2020-02-07 00:19:37 | vstinner | 修改 | messageid: <1581034777.27.0.937045301344.issue39573@roundup.psfhosted.org> |
| 2020-02-07 00:19:37 | vstinner | 链接 | issue39573 messages |
| 2020-02-07 00:19:37 | vstinner | 创建 | |
|