summaryrefslogtreecommitdiff
path: root/Include/cellobject.h
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2002-02-28 23:46:34 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2002-02-28 23:46:34 +0000
commit31e233aa7a02ed8e95227527223db947567830b4 (patch)
tree8b5866301e7b0bc846f4c7180df84ae11146566f /Include/cellobject.h
parent88b666ca3f2e403d23c05a94fbc8038ad2c1fc4d (diff)
downloadcpython-git-31e233aa7a02ed8e95227527223db947567830b4.tar.gz
Cells are not VAR objects.
Noted by Jason Orendorff, SF #520768. Bug fix candidate for 2.1 & 2.2.
Diffstat (limited to 'Include/cellobject.h')
-rw-r--r--Include/cellobject.h2
1 files changed, 1 insertions, 1 deletions
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;