[Python-checkins] r46439 - python/trunk/Objects/unicodeobject.c
andrew.dalke
python-checkins at python.org
Sat May 27 13:04:37 CEST 2006
Author: andrew.dalke
Date: Sat May 27 13:04:36 2006
New Revision: 46439
Modified:
python/trunk/Objects/unicodeobject.c
Log:
fixed typo
Modified: python/trunk/Objects/unicodeobject.c
==============================================================================
--- python/trunk/Objects/unicodeobject.c (original)
+++ python/trunk/Objects/unicodeobject.c Sat May 27 13:04:36 2006
@@ -233,7 +233,7 @@
{
register PyUnicodeObject *unicode;
- /* Optimization fo empty strings */
+ /* Optimization for empty strings */
if (length == 0 && unicode_empty != NULL) {
Py_INCREF(unicode_empty);
return unicode_empty;
More information about the Python-checkins
mailing list