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 vstinner
Recipients Arfrever, benjamin.peterson, ezio.melotti, pkt, python-dev, serhiy.storchaka, vstinner
Date 2015-04-03.08:53:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428051234.96.0.38293469203.issue22643@psf.upfronthosting.co.za>
In-reply-to
Content
>     self.assertRaises(OverflowError, ("�"*(2**32//12 + 1)).upper)
> MemoryError

Hum, even with the PEP 393, this string is still large: 682 MB.

$ python3
Python 3.4.1 (default, Nov  3 2014, 14:38:10) 
>>> sys.getsizeof("�"*(2**32//12 + 1)) / 1024.**2
682.6667385101318

I guess that Serhiy suggests to put a @bigmemtest decorator on test_case_operation_overflow().

The test expects that large_string.upper() raises immediatly an OverflowError, so I understand that a new string is not created.

Hum, it's strange to have an OverflowError here. Integer overflow on memory allocation usually raises MemoryError, not OverflowError. It looks like unicodeobject.c is not consistent here.
History
Date User Action Args
2015-04-03 08:53:55vstinnersetrecipients: + vstinner, benjamin.peterson, ezio.melotti, Arfrever, python-dev, serhiy.storchaka, pkt
2015-04-03 08:53:54vstinnersetmessageid: <1428051234.96.0.38293469203.issue22643@psf.upfronthosting.co.za>
2015-04-03 08:53:54vstinnerlinkissue22643 messages
2015-04-03 08:53:54vstinnercreate