diff options
author | Michael W. Hudson <mwh@python.net> | 2002-03-15 10:23:11 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-03-15 10:23:11 (GMT) |
commit | 2510b46cf3eaa19eae56e026acdc2e5f5cbf2f4f (patch) | |
tree | 7aa548888de66253748a261292c93a3d5217053f /Include | |
parent | 7d23700b37b43dae7cd2c6f14d1a2afcd8c69612 (diff) | |
download | cpython-2510b46cf3eaa19eae56e026acdc2e5f5cbf2f4f.zip cpython-2510b46cf3eaa19eae56e026acdc2e5f5cbf2f4f.tar.gz cpython-2510b46cf3eaa19eae56e026acdc2e5f5cbf2f4f.tar.bz2 |
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.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/cellobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cellobject.h b/Include/cellobject.h index cc4a159..f3eef55 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; |