diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-23 21:42:55 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-23 21:42:55 (GMT) |
commit | 53cbdaa84c9e3c5f8b7ff2446452ff4d6f536219 (patch) | |
tree | 40d00a2f819472aa21bd32b505a53c394019db82 /Objects | |
parent | d6d2f2f93919d035929ac9d02244657a9b604413 (diff) | |
download | cpython-53cbdaa84c9e3c5f8b7ff2446452ff4d6f536219.zip cpython-53cbdaa84c9e3c5f8b7ff2446452ff4d6f536219.tar.gz cpython-53cbdaa84c9e3c5f8b7ff2446452ff4d6f536219.tar.bz2 |
Convert a bunch of constant strings in C to unicode.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/dictobject.c | 2 | ||||
-rw-r--r-- | Objects/listobject.c | 4 | ||||
-rw-r--r-- | Objects/setobject.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 1ae38d5..a483b6c 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -194,7 +194,7 @@ PyDict_New(void) { register dictobject *mp; if (dummy == NULL) { /* Auto-initialize dummy */ - dummy = PyString_FromString("<dummy key>"); + dummy = PyUnicode_FromString("<dummy key>"); if (dummy == NULL) return NULL; #ifdef SHOW_CONVERSION_COUNTS diff --git a/Objects/listobject.c b/Objects/listobject.c index 7e2483e..50d9d9b 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -142,7 +142,7 @@ PyList_GetItem(PyObject *op, Py_ssize_t i) } if (i < 0 || i >= Py_Size(op)) { if (indexerr == NULL) - indexerr = PyString_FromString( + indexerr = PyUnicode_FromString( "list index out of range"); PyErr_SetObject(PyExc_IndexError, indexerr); return NULL; @@ -362,7 +362,7 @@ list_item(PyListObject *a, Py_ssize_t i) { if (i < 0 || i >= Py_Size(a)) { if (indexerr == NULL) - indexerr = PyString_FromString( + indexerr = PyUnicode_FromString( "list index out of range"); PyErr_SetObject(PyExc_IndexError, indexerr); return NULL; diff --git a/Objects/setobject.c b/Objects/setobject.c index 2cc1743..7ff27b1 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -966,7 +966,7 @@ make_new_set(PyTypeObject *type, PyObject *iterable) register PySetObject *so = NULL; if (dummy == NULL) { /* Auto-initialize dummy */ - dummy = PyString_FromString("<dummy key>"); + dummy = PyUnicode_FromString("<dummy key>"); if (dummy == NULL) return NULL; } |