Intern static string

Use float constructors instead of magic code for float constants
This commit is contained in:
Christian Heimes 2008-05-06 16:18:41 +00:00
parent 8e4997390c
commit c8a0d2f368
2 changed files with 2 additions and 12 deletions

View file

@ -215,7 +215,7 @@ join_list_unicode(PyObject *lst)
ustr = PyUnicode_FromUnicode(&c, 0);
}
if (joinstr == NULL) {
joinstr = PyString_FromString("join");
joinstr = PyString_InternFromString("join");
}
if (joinstr == NULL || ustr == NULL) {
return NULL;