mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
Enable GC for new-style instances. This touches lots of files, since
many types were subclassable but had a xxx_dealloc function that
called PyObject_DEL(self) directly instead of deferring to
self->ob_type->tp_free(self). It is permissible to set tp_free in the
type object directly to _PyObject_Del, for non-GC types, or to
_PyObject_GC_Del, for GC types. Still, PyObject_DEL was a tad faster,
so I'm fearing that our pystone rating is going down again. I'm not
sure if doing something like
void xxx_dealloc(PyObject *self)
{
if (PyXxxCheckExact(self))
PyObject_DEL(self);
else
self->ob_type->tp_free(self);
}
is any faster than always calling the else branch, so I haven't
attempted that -- however those types whose own dealloc is fancier
(int, float, unicode) do use this pattern.
This commit is contained in:
parent
be63884d50
commit
9475a2310d
13 changed files with 90 additions and 26 deletions
|
|
@ -481,7 +481,7 @@ PyObject *PyString_AsEncodedString(PyObject *str,
|
|||
static void
|
||||
string_dealloc(PyObject *op)
|
||||
{
|
||||
PyObject_DEL(op);
|
||||
op->ob_type->tp_free(op);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
@ -2746,6 +2746,7 @@ PyTypeObject PyString_Type = {
|
|||
0, /* tp_init */
|
||||
0, /* tp_alloc */
|
||||
string_new, /* tp_new */
|
||||
_PyObject_Del, /* tp_free */
|
||||
};
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue