fixed typo

This commit is contained in:
Andrew Dalke 2006-05-27 11:04:36 +00:00
parent 7a83089c06
commit e0df762719
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ PyUnicodeObject *_PyUnicode_New(Py_ssize_t length)
{
register PyUnicodeObject *unicode;
/* Optimization fo empty strings */
/* Optimization for empty strings */
if (length == 0 && unicode_empty != NULL) {
Py_INCREF(unicode_empty);
return unicode_empty;