Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.

This commit is contained in:
Martin v. Löwis 2009-01-07 18:40:40 +00:00
parent e6dc53120d
commit b90304acb9
5 changed files with 20 additions and 12 deletions

View file

@ -7,7 +7,7 @@
#include <stddef.h>
#ifdef COUNT_ALLOCS
int null_strings, one_strings;
Py_ssize_t null_strings, one_strings;
#endif
static PyStringObject *characters[UCHAR_MAX + 1];