diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2012-09-20 20:44:11 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2012-09-20 20:44:11 (GMT) |
commit | 690558e440f50cc154d5813de2ad4a58c34fc792 (patch) | |
tree | 70041b4a1463f7968c4b3fde656c7a46819979aa | |
parent | 9b9ed867bc86232434e700153353b49e323ec02e (diff) | |
parent | 5710c2a3e8d6e6e6a0830648e8e2be906c2c963d (diff) | |
download | cpython-690558e440f50cc154d5813de2ad4a58c34fc792.zip cpython-690558e440f50cc154d5813de2ad4a58c34fc792.tar.gz cpython-690558e440f50cc154d5813de2ad4a58c34fc792.tar.bz2 |
merge
-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 * |