Commit 542caca9 authored by Mark Dickinson's avatar Mark Dickinson

Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Storchaka.

parent 32171e9e
......@@ -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 *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment