# HG changeset patch # User Brendan Cully # Date 1160584077 25200 # Node ID a5209a1e53d8594fca0d3be5fb9a1f0a31217b45 # Parent f472cf9a71afe00b6409a8b63e8583e584062c88 Support buffer interface in base85 codec diff --git a/mercurial/base85.c b/mercurial/base85.c --- a/mercurial/base85.c +++ b/mercurial/base85.c @@ -35,7 +35,7 @@ b85encode(PyObject *self, PyObject *args unsigned int acc, val, ch; int pad = 0; - if (!PyArg_ParseTuple(args, "s#|i", &text, &len, &pad)) + if (!PyArg_ParseTuple(args, "t#|i", &text, &len, &pad)) return NULL; if (pad) @@ -82,7 +82,7 @@ b85decode(PyObject *self, PyObject *args int len, i, j, olen, c, cap; unsigned int acc; - if (!PyArg_ParseTuple(args, "s#", &text, &len)) + if (!PyArg_ParseTuple(args, "t#", &text, &len)) return NULL; olen = len / 5 * 4;