From 07bbfc6a51578ac0acd8be5ccf2387299d1814f5 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Fri, 26 May 2006 19:51:10 +0000 Subject: [PATCH] Comment typo --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 20f943f9a40..d5935e31df8 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -196,7 +196,7 @@ int unicode_resize(register PyUnicodeObject *unicode, /* We allocate one more byte to make sure the string is Ux0000 terminated. The overallocation is also used by fastsearch, which assumes that it's - safe to look at str[length] (without makeing any assumptions about what + safe to look at str[length] (without making any assumptions about what it contains). */ oldstr = unicode->str;