diff -r 9ba8a93e55f5 -r fa53d66b45a8 mercurial/parsers.c --- a/mercurial/parsers.c Mon Sep 08 20:20:17 2014 +0200 +++ b/mercurial/parsers.c Mon Sep 08 20:22:10 2014 +0200 @@ -681,10 +681,9 @@ { PyObject *obj; char *node; - long offset; - Py_ssize_t len, nodelen; + Py_ssize_t offset, len, nodelen; - if (!PyArg_ParseTuple(args, "lO", &offset, &obj)) + if (!PyArg_ParseTuple(args, "nO", &offset, &obj)) return NULL; if (!PyTuple_Check(obj) || PyTuple_GET_SIZE(obj) != 8) {