[Python-3000-checkins] r58491 - python/branches/py3k/Objects/unicodeobject.c

alexandre.vassalotti python-3000-checkins at python.org
Tue Oct 16 02:26:34 CEST 2007


Author: alexandre.vassalotti
Date: Tue Oct 16 02:26:33 2007
New Revision: 58491

Modified:
   python/branches/py3k/Objects/unicodeobject.c
Log:
Fix a small typo in the comment of unicode_default_encoding[].


Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c	(original)
+++ python/branches/py3k/Objects/unicodeobject.c	Tue Oct 16 02:26:33 2007
@@ -119,7 +119,7 @@
    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";


More information about the Python-3000-checkins mailing list