From b41bb7953bce77ec73844523732ac89fd54ec614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Tue, 5 Jun 2007 20:02:26 +0000 Subject: unichr() is named chr() now => fix name in error message. --- Objects/unicodeobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 55d0384..e793418 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -891,14 +891,14 @@ PyObject *PyUnicode_FromOrdinal(int ordinal) #ifdef Py_UNICODE_WIDE if (ordinal < 0 || ordinal > 0x10ffff) { PyErr_SetString(PyExc_ValueError, - "unichr() arg not in range(0x110000) " + "chr() arg not in range(0x110000) " "(wide Python build)"); return NULL; } #else if (ordinal < 0 || ordinal > 0xffff) { PyErr_SetString(PyExc_ValueError, - "unichr() arg not in range(0x10000) " + "chr() arg not in range(0x10000) " "(narrow Python build)"); return NULL; } -- cgit v0.12