summaryrefslogtreecommitdiffstats
path: root/Objects/bytearrayobject.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-09-29 02:02:13 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-09-29 02:02:13 (GMT)
commit6430fd56b4da63339c7238a75e5e014b95b39983 (patch)
treeee3332cd34e4004758bf60cf8a31c47a07953580 /Objects/bytearrayobject.c
parentd9c563e84d358346fb2abf09addfdc6e8b7c0c99 (diff)
downloadcpython-6430fd56b4da63339c7238a75e5e014b95b39983.zip
cpython-6430fd56b4da63339c7238a75e5e014b95b39983.tar.gz
cpython-6430fd56b4da63339c7238a75e5e014b95b39983.tar.bz2
Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODE
Diffstat (limited to 'Objects/bytearrayobject.c')
-rw-r--r--Objects/bytearrayobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c
index d294cd6..72e5815 100644
--- a/Objects/bytearrayobject.c
+++ b/Objects/bytearrayobject.c
@@ -1147,7 +1147,7 @@ PyDoc_STRVAR(clear__doc__,
\n\
Remove all items from B.");
-static PyObject *
+static PyObject *
bytearray_clear(PyByteArrayObject *self)
{
if (PyByteArray_Resize((PyObject *)self, 0) < 0)
@@ -2629,7 +2629,7 @@ Spaces between two numbers are accepted.\n\
Example: bytearray.fromhex('B9 01EF') -> bytearray(b'\\xb9\\x01\\xef').");
static int
-hex_digit_to_int(Py_UNICODE c)
+hex_digit_to_int(Py_UCS4 c)
{
if (c >= 128)
return -1;