Convert a bunch of constant strings in C to unicode.

This commit is contained in:
Neal Norwitz 2007-08-23 21:42:55 +00:00
parent d6d2f2f939
commit 53cbdaa84c
7 changed files with 8 additions and 8 deletions

View file

@ -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;
}