From: Jeremy Hylton Date: Thu, 28 Feb 2002 23:46:34 +0000 (+0000) Subject: Cells are not VAR objects. X-Git-Tag: v2.3c1~6606 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31e233aa7a02ed8e95227527223db947567830b4;p=python Cells are not VAR objects. Noted by Jason Orendorff, SF #520768. Bug fix candidate for 2.1 & 2.2. --- diff --git a/Include/cellobject.h b/Include/cellobject.h index cc4a159e85..f3eef55e49 100644 --- a/Include/cellobject.h +++ b/Include/cellobject.h @@ -7,7 +7,7 @@ extern "C" { #endif typedef struct { - PyObject_VAR_HEAD + PyObject_HEAD PyObject *ob_ref; } PyCellObject;