summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2006-03-22 08:52:43 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2006-03-22 08:52:43 (GMT)
commitf303261cf036b4e4d78281a9639e2441e0b644f1 (patch)
tree2ec2bce7c38c217068113e9c1ee9529c24deff34 /Include
parent8142cb6f20b4a20bfa168a6b6582b5df2192e824 (diff)
downloadcpython-f303261cf036b4e4d78281a9639e2441e0b644f1.zip
cpython-f303261cf036b4e4d78281a9639e2441e0b644f1.tar.gz
cpython-f303261cf036b4e4d78281a9639e2441e0b644f1.tar.bz2
Remove false information from the comment and reformat it like other
comments in the file. (SF #1455641)
Diffstat (limited to 'Include')
-rw-r--r--Include/pyport.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/Include/pyport.h b/Include/pyport.h
index ae19d6f..df97b99 100644
--- a/Include/pyport.h
+++ b/Include/pyport.h
@@ -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>