Cells are not VAR objects.

Noted by Jason Orendorff, SF #520768.

Bug fix candidate for 2.1 & 2.2.
This commit is contained in:
Jeremy Hylton 2002-02-28 23:46:34 +00:00
parent 88b666ca3f
commit 31e233aa7a
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ extern "C" {
#endif
typedef struct {
PyObject_VAR_HEAD
PyObject_HEAD
PyObject *ob_ref;
} PyCellObject;