Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODE

This commit is contained in:
Victor Stinner 2011-09-29 04:02:13 +02:00
parent d9c563e84d
commit 6430fd56b4
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -2330,7 +2330,7 @@ Spaces between two numbers are accepted.\n\
Example: bytes.fromhex('B9 01EF') -> 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;