changeset 42067 | b01bbb8ff1f2 |
parent 41283 | 4948b327d3b9 |
child 42096 | 509a0477b3a6 |
--- a/mercurial/cext/revlog.c Thu Apr 04 18:20:36 2019 -0700 +++ b/mercurial/cext/revlog.c Thu Apr 04 15:18:06 2019 -0700 @@ -7,6 +7,7 @@ the GNU General Public License, incorporated herein by reference. */ +#define PY_SSIZE_T_CLEAN #include <Python.h> #include <assert.h> #include <ctype.h> @@ -1947,7 +1948,7 @@ static PyObject *index_partialmatch(indexObject *self, PyObject *args) { const char *fullnode; - int nodelen; + Py_ssize_t nodelen; char *node; int rev, i;