From: Alexandre Vassalotti Date: Tue, 16 Oct 2007 00:26:33 +0000 (+0000) Subject: Fix a small typo in the comment of unicode_default_encoding[]. X-Git-Tag: v3.0a2~311 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d2fd7f923c35fe61c0f26f2ae150d73a42859b9;p=thirdparty%2FPython%2Fcpython.git Fix a small typo in the comment of unicode_default_encoding[]. --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 98723dba8160..b2c24d798964 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -119,7 +119,7 @@ static PyUnicodeObject *unicode_latin1[256]; parameter; it is fixed to "utf-8". Always use the PyUnicode_GetDefaultEncoding() API to access this global. - Don't forget to alter Py_FileSystemDefaultEncoding() if you change the + Don't forget to alter Py_FileSystemDefaultEncoding if you change the hard coded default! */ static const char unicode_default_encoding[] = "utf-8";