Oops, forgot to include this in the last checkin.

Actually define Py_RefTotal as a Py_ssize_t.
This commit is contained in:
Neal Norwitz 2006-03-04 20:00:59 +00:00
parent 4281cef205
commit 84632ee319

View file

@ -4,7 +4,7 @@
#include "Python.h"
#ifdef Py_REF_DEBUG
long _Py_RefTotal;
Py_ssize_t _Py_RefTotal;
#endif
int Py_DivisionWarningFlag;