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

martin.v.loewis python-checkins at python.org
Thu Jan 27 22:47:00 CET 2011


Author: martin.v.loewis
Date: Thu Jan 27 22:47:00 2011
New Revision: 88219

Log:
Concern from Stefan Behnel: Lack for Py_Unicode representation
makes applications inefficient.


Modified:
   peps/trunk/pep-0393.txt

Modified: peps/trunk/pep-0393.txt
==============================================================================
--- peps/trunk/pep-0393.txt	(original)
+++ peps/trunk/pep-0393.txt	Thu Jan 27 22:47:00 2011
@@ -189,6 +189,11 @@
 It makes the implementation more complex. That's true, but considered
 worth given the gains.
 
+The Py_Unicode representation is not instantaneously available,
+slowing down applications that request it. While this is also true,
+applications that care about this problem can be rewritten to use the
+str representation.
+
 Copyright
 =========
 


More information about the Python-checkins mailing list