From 2510b46cf3eaa19eae56e026acdc2e5f5cbf2f4f Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Fri, 15 Mar 2002 10:23:11 +0000 Subject: [PATCH] backport jhylton's checkin of revision 2.2 of cellobject.h Cells are not VAR objects. Noted by Jason Orendorff, SF #520768. Bug fix candidate for 2.1 & 2.2. --- Include/cellobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/cellobject.h b/Include/cellobject.h index cc4a159e8597..f3eef55e4941 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; -- 2.47.3