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 martin.panter
Recipients martin.panter, pabstersac
Date 2016-07-18.09:33:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468834418.99.0.550832469522.issue27559@psf.upfronthosting.co.za>
In-reply-to
Content
bytearray(n) needs to allocate n bytes. Unless your computer has 1024 GiB of memory, this is not going to be possible. If you are using an OS like Linux, it may pretend to allocate that much memory, and then kill the process when it realizes it has overallocated. If you need more robust behaviour on Linux, I suggest looking into disabling memory overcommit.
History
Date User Action Args
2016-07-18 09:33:39martin.pantersetrecipients: + martin.panter, pabstersac
2016-07-18 09:33:38martin.pantersetmessageid: <1468834418.99.0.550832469522.issue27559@psf.upfronthosting.co.za>
2016-07-18 09:33:38martin.panterlinkissue27559 messages
2016-07-18 09:33:38martin.pantercreate