From ecf4fdad50da72f6fcd4324436d0cf3f98053c12 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 15 Jul 2011 01:13:24 +0200 Subject: Py_BuildValue("C") supports non-BMP characters on narrow build Py_BuildValue("C") doesn't have to check the code point, PyUnicode_FromOrdinal() checks its input and now supports non-BMP characters (range U+10000-U+10FFFF). --- Python/modsupport.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Python/modsupport.c b/Python/modsupport.c index 85b0d66..08f5065 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -292,11 +292,6 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags) case 'C': { int i = va_arg(*p_va, int); - if (i < 0 || i > PyUnicode_GetMax()) { - PyErr_SetString(PyExc_OverflowError, - "%c arg not in range(0x110000)"); - return NULL; - } return PyUnicode_FromOrdinal(i); } -- cgit v0.12