diff options
Diffstat (limited to 'Modules/pcremodule.c')
-rw-r--r-- | Modules/pcremodule.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/pcremodule.c b/Modules/pcremodule.c index 3b61697..9ae9226 100644 --- a/Modules/pcremodule.c +++ b/Modules/pcremodule.c @@ -165,7 +165,7 @@ PyPcre_getattr(self, name) staticforward PyTypeObject Pcre_Type = { - PyObject_HEAD_INIT(&PyType_Type) + PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ "Pcre", /*tp_name*/ sizeof(PcreObject), /*tp_basicsize*/ @@ -664,6 +664,8 @@ initpcre() { PyObject *m, *d; + Pcre_Type.ob_type = &PyType_Type; + /* Create the module and add the functions */ m = Py_InitModule("pcre", pcre_methods); |