summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-06-20 11:02:38 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2007-06-20 11:02:38 (GMT)
commitbc1f886170286291ad270d1935bd61151e398110 (patch)
treeeb5ef3a5949160a92703699ecf2b326d5ea6628b /Python
parent32a4c7141911c58f01afe7b89482dbd4ce4f817f (diff)
downloadcpython-bc1f886170286291ad270d1935bd61151e398110.zip
cpython-bc1f886170286291ad270d1935bd61151e398110.tar.gz
cpython-bc1f886170286291ad270d1935bd61151e398110.tar.bz2
Change %c format specifier for PyArg_ParseTuple() so that it accepts
a unicode character (an int * must be passed as the argument). Change %c format specifier for Py_BuildValue() so that it outputs a unicode object. Fix datetime.datetime.isoformat(), so that it works if sep is a unicode character > U+00FF.
Diffstat (limited to 'Python')
-rw-r--r--Python/getargs.c7
-rw-r--r--Python/modsupport.c19
2 files changed, 19 insertions, 7 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index 7b27388..1730bff 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -761,15 +761,14 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags,
#endif /* WITHOUT_COMPLEX */
case 'c': {/* char */
- char *p = va_arg(*p_va, char *);
+ int *p = va_arg(*p_va, int *);
if (PyString_Check(arg) && PyString_Size(arg) == 1)
*p = PyString_AS_STRING(arg)[0];
else if (PyUnicode_Check(arg) &&
- PyUnicode_GET_SIZE(arg) == 1 &&
- PyUnicode_AS_UNICODE(arg)[0] < 256)
+ PyUnicode_GET_SIZE(arg) == 1)
*p = PyUnicode_AS_UNICODE(arg)[0];
else
- return converterr("char < 256", arg, msgbuf, bufsize);
+ return converterr("char", arg, msgbuf, bufsize);
break;
}
diff --git a/Python/modsupport.c b/Python/modsupport.c
index 781a331..ba46409 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -385,9 +385,22 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags)
case 'c':
{
- char p[1];
- p[0] = (char)va_arg(*p_va, int);
- return PyString_FromStringAndSize(p, 1);
+ int i = va_arg(*p_va, int);
+ Py_UNICODE c;
+ if (i < 0 || i > PyUnicode_GetMax()) {
+#ifdef Py_UNICODE_WIDE
+ PyErr_SetString(PyExc_OverflowError,
+ "%c arg not in range(0x110000) "
+ "(wide Python build)");
+#else
+ PyErr_SetString(PyExc_OverflowError,
+ "%c arg not in range(0x10000) "
+ "(narrow Python build)");
+#endif
+ return NULL;
+ }
+ c = i;
+ return PyUnicode_FromUnicode(&c, 1);
}
case 's':