mirror of
https://github.com/python/cpython.git
synced 2025-09-04 07:51:13 +00:00
Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Storchaka.
This commit is contained in:
parent
4e12ad19c9
commit
c286e58044
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@
|
||||||
*/
|
*/
|
||||||
static PyLongObject small_ints[NSMALLNEGINTS + NSMALLPOSINTS];
|
static PyLongObject small_ints[NSMALLNEGINTS + NSMALLPOSINTS];
|
||||||
#ifdef COUNT_ALLOCS
|
#ifdef COUNT_ALLOCS
|
||||||
int quick_int_allocs, quick_neg_int_allocs;
|
Py_ssize_t quick_int_allocs, quick_neg_int_allocs;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue