From: Neil Schemenauer Date: Wed, 29 Aug 2001 23:50:42 +0000 (+0000) Subject: Remove bogus PyGC_HEAD_SIZE. X-Git-Tag: v2.2a3~234 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01b66a80c4c27eb8b0fb682f6ea35b4654b2cc16;p=thirdparty%2FPython%2Fcpython.git Remove bogus PyGC_HEAD_SIZE. --- diff --git a/Modules/xreadlinesmodule.c b/Modules/xreadlinesmodule.c index 0881dd852125..efc3de515fe9 100644 --- a/Modules/xreadlinesmodule.c +++ b/Modules/xreadlinesmodule.c @@ -136,7 +136,7 @@ static PyTypeObject XReadlinesObject_Type = { PyObject_HEAD_INIT(NULL) 0, "xreadlines", - sizeof(PyXReadlinesObject) + PyGC_HEAD_SIZE, + sizeof(PyXReadlinesObject), 0, (destructor)xreadlines_dealloc, /* tp_dealloc */ 0, /* tp_print */