[Python-checkins] r42839 - python/trunk/Objects/object.c

neal.norwitz python-checkins at python.org
Sat Mar 4 21:01:02 CET 2006


Author: neal.norwitz
Date: Sat Mar  4 21:00:59 2006
New Revision: 42839

Modified:
   python/trunk/Objects/object.c
Log:
Oops, forgot to include this in the last checkin.
Actually define Py_RefTotal as a Py_ssize_t.


Modified: python/trunk/Objects/object.c
==============================================================================
--- python/trunk/Objects/object.c	(original)
+++ python/trunk/Objects/object.c	Sat Mar  4 21:00:59 2006
@@ -4,7 +4,7 @@
 #include "Python.h"
 
 #ifdef Py_REF_DEBUG
-long _Py_RefTotal;
+Py_ssize_t _Py_RefTotal;
 #endif
 
 int Py_DivisionWarningFlag;


More information about the Python-checkins mailing list