diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-09-20 20:30:34 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-09-20 20:30:34 (GMT) |
commit | 5710c2a3e8d6e6e6a0830648e8e2be906c2c963d (patch) | |
tree | 88153b2a3f793714880829598e5c3a4920f17770 /Objects | |
parent | 7c6c80d89f60c9b28cfb08d32c61108b16b2461a (diff) | |
parent | c286e58044839bd8d946b12fee454ae861e6cdbc (diff) | |
download | cpython-5710c2a3e8d6e6e6a0830648e8e2be906c2c963d.zip cpython-5710c2a3e8d6e6e6a0830648e8e2be906c2c963d.tar.gz cpython-5710c2a3e8d6e6e6a0830648e8e2be906c2c963d.tar.bz2 |
Issue 15959: Merge from 3.2.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/longobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index f452840..73413dd 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -30,7 +30,7 @@ */ static PyLongObject small_ints[NSMALLNEGINTS + NSMALLPOSINTS]; #ifdef COUNT_ALLOCS -int quick_int_allocs, quick_neg_int_allocs; +Py_ssize_t quick_int_allocs, quick_neg_int_allocs; #endif static PyObject * |