This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eisele
Recipients doerwalter, eisele
Date 2007-11-29.16:15:22
SpamBayes Score 0.01226242
Marked as misclassified No
Message-id <1196352922.94.0.335711497485.issue1521@psf.upfronthosting.co.za>
In-reply-to
Content
For instance:

Python 2.5.1 (r251:54863, Aug 30 2007, 16:15:51) 
[GCC 4.1.0 (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
__[1] >>> s=" "*int(5E9)
6.050000 sec
__[1] >>> u=s.decode("utf-8")
4.710000 sec
__[1] >>> len(u) 
705032704
__[2] >>> len(s)
5000000000
__[3] >>> 

I would have expected both lengths to be 5E9
History
Date User Action Args
2007-11-29 16:15:23eiselesetspambayes_score: 0.0122624 -> 0.01226242
recipients: + eisele, doerwalter
2007-11-29 16:15:22eiselesetspambayes_score: 0.0122624 -> 0.0122624
messageid: <1196352922.94.0.335711497485.issue1521@psf.upfronthosting.co.za>
2007-11-29 16:15:22eiselelinkissue1521 messages
2007-11-29 16:15:22eiselecreate