[Python-checkins] r43219 - python/trunk/Include/pyport.h
hyeshik.chang
python-checkins at python.org
Wed Mar 22 09:52:49 CET 2006
Author: hyeshik.chang
Date: Wed Mar 22 09:52:43 2006
New Revision: 43219
Modified:
python/trunk/Include/pyport.h
Log:
Remove false information from the comment and reformat it like other
comments in the file. (SF #1455641)
Modified: python/trunk/Include/pyport.h
==============================================================================
--- python/trunk/Include/pyport.h (original)
+++ python/trunk/Include/pyport.h Wed Mar 22 09:52:43 2006
@@ -476,14 +476,12 @@
#endif
-/*******************************************************************
-On 4.4BSD-descendants, ctype functions serves the whole range of
-wchar_t character set rather than single byte code points only.
-This characteristic can break some operations of string object
-including str.upper() and str.split() on UTF-8 locales. This
-workaround was provided by Tim Robbins of FreeBSD project. He said
-the incompatibility will be fixed in FreeBSD 6.
-********************************************************************/
+/* On 4.4BSD-descendants, ctype functions serves the whole range of
+ * wchar_t character set rather than single byte code points only.
+ * This characteristic can break some operations of string object
+ * including str.upper() and str.split() on UTF-8 locales. This
+ * workaround was provided by Tim Robbins of FreeBSD project.
+ */
#ifdef __FreeBSD__
#include <osreldate.h>
More information about the Python-checkins
mailing list