From 93b30b5b821d2719b5903024b461ec54e3658145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Fri, 22 Jun 2007 12:21:53 +0000 Subject: [PATCH] Make array.typecode a unicode string. --- Modules/arraymodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 1936da0b1ea..585ed2f2d34 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -1377,7 +1377,7 @@ PyDoc_STRVAR(fromstring_doc, "fromstring(string)\n\ \n\ Appends items from the string, interpreting it as an array of machine\n\ -values,as if it had been read from a file using the fromfile() method)."); +values, as if it had been read from a file using the fromfile() method)."); static PyObject * @@ -1461,7 +1461,7 @@ static PyObject * array_get_typecode(arrayobject *a, void *closure) { char tc = a->ob_descr->typecode; - return PyString_FromStringAndSize(&tc, 1); + return PyUnicode_FromStringAndSize(&tc, 1); } static PyObject *