]> granicus.if.org Git - python/commitdiff
Remove false information from the comment and reformat it like other
authorHye-Shik Chang <hyeshik@gmail.com>
Wed, 22 Mar 2006 08:52:43 +0000 (08:52 +0000)
committerHye-Shik Chang <hyeshik@gmail.com>
Wed, 22 Mar 2006 08:52:43 +0000 (08:52 +0000)
comments in the file. (SF #1455641)

Include/pyport.h

index ae19d6fc1d5f639eeb9f13405124f3bcd7a7ec2f..df97b999ac5af2dad09b7bc6835920cf8fb707aa 100644 (file)
@@ -476,14 +476,12 @@ extern double hypot(double, double);
 #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>