From: Andrew Dalke Date: Sat, 27 May 2006 11:04:36 +0000 (+0000) Subject: fixed typo X-Git-Tag: v2.5b1~413 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e0df7627191e367ad0496f582d2aa298b3c11848;p=thirdparty%2FPython%2Fcpython.git fixed typo --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 8cb32e16766d..d37ca0c3a532 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -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;