mirror of
https://github.com/python/cpython.git
synced 2025-11-11 02:52:04 +00:00
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and PyVarObject_HEAD_INIT.
This commit is contained in:
parent
b1994b4a5d
commit
6819210b9e
129 changed files with 1090 additions and 1250 deletions
|
|
@ -44,10 +44,10 @@ PyAPI_DATA(PyTypeObject) _PyWeakref_CallableProxyType;
|
|||
|
||||
#define PyWeakref_CheckRef(op) PyObject_TypeCheck(op, &_PyWeakref_RefType)
|
||||
#define PyWeakref_CheckRefExact(op) \
|
||||
((op)->ob_type == &_PyWeakref_RefType)
|
||||
(Py_Type(op) == &_PyWeakref_RefType)
|
||||
#define PyWeakref_CheckProxy(op) \
|
||||
(((op)->ob_type == &_PyWeakref_ProxyType) || \
|
||||
((op)->ob_type == &_PyWeakref_CallableProxyType))
|
||||
((Py_Type(op) == &_PyWeakref_ProxyType) || \
|
||||
(Py_Type(op) == &_PyWeakref_CallableProxyType))
|
||||
|
||||
/* This macro calls PyWeakref_CheckRef() last since that can involve a
|
||||
function call; this makes it more likely that the function call
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue