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

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