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 serhiy.storchaka
Recipients Arfrever, georg.brandl, pkt, python-dev, serhiy.storchaka, vstinner
Date 2014-09-30.14:01:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <5935568.oArXzhuMVC@raxxla>
In-reply-to <1412082817.02.0.161591652859.issue22518@psf.upfronthosting.co.za>
Content
> Ooops, wrong issue, the test is : ("\uffff" * (2**29)).encode("latin1",
> errors="xmlcharrefreplace").

("\uffff" * (sys.maxsize//8+1)).encode("latin1", errors="xmlcharrefreplace")

or

("\xff" * (sys.maxsize//6+1)).encode("ascii", errors="xmlcharrefreplace")
History
Date User Action Args
2014-09-30 14:01:31serhiy.storchakasetrecipients: + serhiy.storchaka, georg.brandl, vstinner, Arfrever, python-dev, pkt
2014-09-30 14:01:31serhiy.storchakalinkissue22518 messages
2014-09-30 14:01:31serhiy.storchakacreate