Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02dbef7 commit 8518ec5Copy full SHA for 8518ec5
1 file changed
Modules/_io/iobase.c
@@ -1034,15 +1034,6 @@ rawiobase_write(PyObject *self, PyObject *args)
1034
return NULL;
1035
}
1036
1037
-static void
1038
-rawiobase_dealloc(PyObject *self)
1039
-{
1040
- PyTypeObject *tp = Py_TYPE(self);
1041
- _PyObject_GC_UNTRACK(self);
1042
- tp->tp_free(self);
1043
- Py_DECREF(tp);
1044
-}
1045
-
1046
static int
1047
rawiobase_traverse(PyObject *self, visitproc visit, void *arg)
1048
{
@@ -1059,7 +1050,6 @@ static PyMethodDef rawiobase_methods[] = {
1059
1050
};
1060
1051
1061
1052
static PyType_Slot rawiobase_slots[] = {
1062
- {Py_tp_dealloc, rawiobase_dealloc},
1063
1053
{Py_tp_doc, (void *)rawiobase_doc},
1064
1054
{Py_tp_methods, rawiobase_methods},
1065
1055
{Py_tp_traverse, rawiobase_traverse},
0 commit comments