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 mboquien
Recipients mboquien, neologix, pitrou, sbt
Date 2014-04-02.22:13:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396476813.46.0.278551743169.issue21116@psf.upfronthosting.co.za>
In-reply-to
Content
If I remember correctly the problem is that some OS like linux (and probably others) do not really allocate space until something is written. If that's the case then the process may get killed later on when it writes something in the array.

Here is a quick example:

$ truncate -s 1T test.file
$ ls -lh test.file 
-rw-r--r-- 1 mederic users 1.0T Apr  2 23:10 test.file
$ df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sdb1       110G   46G   59G  44% /home
History
Date User Action Args
2014-04-02 22:13:33mboquiensetrecipients: + mboquien, pitrou, neologix, sbt
2014-04-02 22:13:33mboquiensetmessageid: <1396476813.46.0.278551743169.issue21116@psf.upfronthosting.co.za>
2014-04-02 22:13:33mboquienlinkissue21116 messages
2014-04-02 22:13:32mboquiencreate