From: Guido van Rossum Date: Mon, 15 Oct 2001 21:24:12 +0000 (+0000) Subject: Remove a couple of tp_xxx fields that you are not expected to X-Git-Tag: v2.2.1c1~1273 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ef1b8fd972c9d9169654dcf887e75f87bb3ef6f;p=python Remove a couple of tp_xxx fields that you are not expected to initialize (or use or even know about :-). --- diff --git a/Modules/xxmodule.c b/Modules/xxmodule.c index fb0c6fbcbc..29b874b609 100644 --- a/Modules/xxmodule.c +++ b/Modules/xxmodule.c @@ -138,11 +138,6 @@ statichere PyTypeObject Xxo_Type = { 0, /*tp_new*/ 0, /*tp_free*/ 0, /*tp_is_gc*/ - 0, /*tp_bases*/ - 0, /*tp_mro*/ - 0, /*tp_defined*/ - 0, /*tp_subclasses*/ - 0, /*tp_weaklist*/ }; /* --------------------------------------------------------------------- */