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 giampaolo.rodola
Recipients brian.curtin, ezio.melotti, giampaolo.rodola, pitrou, rhettinger
Date 2011-07-01.08:24:26
SpamBayes Score 0.017233636
Marked as misclassified No
Message-id <1309508668.54.0.296674418608.issue12442@psf.upfronthosting.co.za>
In-reply-to
Content
Agreed. 
New patch removes the percentage and fixes computations on posix as recommended by Charles-François:

free = st.f_bavail * st.f_bsize
total = st.f_blocks * st.f_frsize
used = (total - st.f_bfree * st.f_bsize)
History
Date User Action Args
2011-07-01 08:24:28giampaolo.rodolasetrecipients: + giampaolo.rodola, rhettinger, pitrou, ezio.melotti, brian.curtin
2011-07-01 08:24:28giampaolo.rodolasetmessageid: <1309508668.54.0.296674418608.issue12442@psf.upfronthosting.co.za>
2011-07-01 08:24:28giampaolo.rodolalinkissue12442 messages
2011-07-01 08:24:27giampaolo.rodolacreate