summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorAndrew Dalke <dalke@dalkescientific.com>2006-05-27 11:04:36 (GMT)
committerAndrew Dalke <dalke@dalkescientific.com>2006-05-27 11:04:36 (GMT)
commite0df7627191e367ad0496f582d2aa298b3c11848 (patch)
tree8825f5054f0291dc46936139ff881b7df9fb6c43 /Objects/unicodeobject.c
parent7a83089c06744dcdd29eb692dbeb51449191ed3f (diff)
downloadcpython-e0df7627191e367ad0496f582d2aa298b3c11848.zip
cpython-e0df7627191e367ad0496f582d2aa298b3c11848.tar.gz
cpython-e0df7627191e367ad0496f582d2aa298b3c11848.tar.bz2
fixed typo
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 8cb32e1..d37ca0c 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;