[Python-checkins] r88195 - peps/trunk/pep-0393.txt

martin.v.loewis python-checkins at python.org
Wed Jan 26 00:02:05 CET 2011


Author: martin.v.loewis
Date: Wed Jan 26 00:02:05 2011
New Revision: 88195

Log:
Fix typo. Reported by Neal Norwitz.


Modified:
   peps/trunk/pep-0393.txt

Modified: peps/trunk/pep-0393.txt
==============================================================================
--- peps/trunk/pep-0393.txt	(original)
+++ peps/trunk/pep-0393.txt	Wed Jan 26 00:02:05 2011
@@ -71,7 +71,7 @@
 - length: number of code points in the string (result of sq_length)
 - str: shortest-form representation of the unicode string; the lower
   two bits of the pointer indicate the specific form:
-  01 => 1 byte (Latin-1); 11 => 2 byte (UCS-2); 11 => 4 byte (UCS-4);
+  01 => 1 byte (Latin-1); 10 => 2 byte (UCS-2); 11 => 4 byte (UCS-4);
   00 => null pointer
 
   The string is null-terminated (in its respective representation).


More information about the Python-checkins mailing list