summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2007-10-16 00:26:33 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2007-10-16 00:26:33 (GMT)
commit3d2fd7f923c35fe61c0f26f2ae150d73a42859b9 (patch)
tree882443ce95c6b80b8052da1391553d451f9a5798
parent7648ba83f24aaae08104bf65773ea259b49e70da (diff)
downloadcpython-3d2fd7f923c35fe61c0f26f2ae150d73a42859b9.zip
cpython-3d2fd7f923c35fe61c0f26f2ae150d73a42859b9.tar.gz
cpython-3d2fd7f923c35fe61c0f26f2ae150d73a42859b9.tar.bz2
Fix a small typo in the comment of unicode_default_encoding[].
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 98723db..b2c24d7 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";