diff options
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 601880e..2a62f5d 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -1877,7 +1877,7 @@ static PyTypeObject PySocketSock_Type = { 0, /* tp_hash */ 0, /* tp_call */ 0, /* tp_str */ - PyObject_GenericGetAttr, /* tp_getattro */ + 0, /* set below */ /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ @@ -1897,9 +1897,9 @@ static PyTypeObject PySocketSock_Type = { 0, /* tp_descr_set */ 0, /* tp_dictoffset */ PySocketSock_init, /* tp_init */ - PyType_GenericAlloc, /* tp_alloc */ + 0, /* set below */ /* tp_alloc */ PySocketSock_new, /* tp_new */ - _PyObject_Del, /* tp_free */ + 0, /* set below */ /* tp_free */ }; @@ -3133,6 +3133,9 @@ init_socket(void) #endif /* MS_WINDOWS */ #endif /* RISCOS */ PySocketSock_Type.ob_type = &PyType_Type; + PySocketSock_Type.tp_getattro = PyObject_GenericGetAttr; + PySocketSock_Type.tp_alloc = PyType_GenericAlloc; + PySocketSock_Type.tp_free = _PyObject_Del; #ifdef USE_SSL PySSL_Type.ob_type = &PyType_Type; #endif |