diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-04 20:00:59 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-04 20:00:59 (GMT) |
commit | 84632ee319b0fa194e7d20e3983b99ae28335e70 (patch) | |
tree | bc6a637c0ea012058eb2cce6c808bdaaa4e029b0 /Objects | |
parent | 4281cef2057e24384a1d59b6bcf9e9161fde26e8 (diff) | |
download | cpython-84632ee319b0fa194e7d20e3983b99ae28335e70.zip cpython-84632ee319b0fa194e7d20e3983b99ae28335e70.tar.gz cpython-84632ee319b0fa194e7d20e3983b99ae28335e70.tar.bz2 |
Oops, forgot to include this in the last checkin.
Actually define Py_RefTotal as a Py_ssize_t.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index 7b905dc..a69a0ad 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -4,7 +4,7 @@ #include "Python.h" #ifdef Py_REF_DEBUG -long _Py_RefTotal; +Py_ssize_t _Py_RefTotal; #endif int Py_DivisionWarningFlag; |