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 neologix
Recipients aaron315, brian.curtin, neologix, petri.lehtinen, skrah
Date 2012-03-20.08:43:53
SpamBayes Score 1.5719355e-08
Marked as misclassified No
Message-id <1332233040.84.0.00731689547779.issue14370@psf.upfronthosting.co.za>
In-reply-to
Content
I think you're simply running OOM, and Linux is thrashing to death.
If you wait long enough, the process should get nuked by the OOM killer (well, in theory).

What happens if you disable swap altogether ('swapoff -a')?
You can also change to strict overcommitting ('echo 2 > /proc/sys/vm/overcommit_memory').

Anyway, I guess you would get the same effect by simply running
list(range(<huge number>))...
History
Date User Action Args
2012-03-20 08:44:00neologixsetrecipients: + neologix, brian.curtin, skrah, petri.lehtinen, aaron315
2012-03-20 08:44:00neologixsetmessageid: <1332233040.84.0.00731689547779.issue14370@psf.upfronthosting.co.za>
2012-03-20 08:43:54neologixlinkissue14370 messages
2012-03-20 08:43:53neologixcreate