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/setobject.c | |
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/setobject.c')
-rw-r--r-- | Objects/setobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |