mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
This commit is contained in:
parent
99170a5dbf
commit
90aa7646af
144 changed files with 1306 additions and 1153 deletions
|
|
@ -46,7 +46,7 @@ enum_dealloc(enumobject *en)
|
|||
Py_XDECREF(en->en_sit);
|
||||
Py_XDECREF(en->en_result);
|
||||
Py_XDECREF(en->en_longindex);
|
||||
Py_Type(en)->tp_free(en);
|
||||
Py_TYPE(en)->tp_free(en);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
@ -108,7 +108,7 @@ enum_next(enumobject *en)
|
|||
PyObject *result = en->en_result;
|
||||
PyObject *it = en->en_sit;
|
||||
|
||||
next_item = (*Py_Type(it)->tp_iternext)(it);
|
||||
next_item = (*Py_TYPE(it)->tp_iternext)(it);
|
||||
if (next_item == NULL)
|
||||
return NULL;
|
||||
|
||||
|
|
@ -237,7 +237,7 @@ reversed_dealloc(reversedobject *ro)
|
|||
{
|
||||
PyObject_GC_UnTrack(ro);
|
||||
Py_XDECREF(ro->seq);
|
||||
Py_Type(ro)->tp_free(ro);
|
||||
Py_TYPE(ro)->tp_free(ro);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue