Martin Michlmayr <[EMAIL PROTECTED]> writes: > * Falk Hueffner <[EMAIL PROTECTED]> [2005-08-24 22:46]: >> [EMAIL PROTECTED]:~% python >> Python 2.3.5 (#2, Aug 13 2005, 20:48:47) >> [GCC 4.0.2 20050806 (prerelease) (Debian 4.0.1-4)] on linux2 >> Type "help", "copyright", "credits" or "license" for more information. >> >>> from os import statvfs >> >>> statvfs(".") >> (4096, 4096, 3383545173598030, 5629499534869841, 4912214227121058, 0, 1024, >> 255, 0, 0) >> >>> (f_bsize, f_frsize, f_blocks, f_bfree, f_bavail, f_files, f_ffree, >> >>> f_favail, f_flag, f_namemax) = statvfs(".") >> >>> long(f_bavail) * long(f_bsize) >> 20120429474287853568L >> >>> >> >> This seems pretty bogus. So I guess this is a Python bug, then? > > Seems like it. Can you see what python2.4 says?
[EMAIL PROTECTED]:/tmp% python2.4 Python 2.4.1 (#2, Jul 14 2005, 01:59:12) [GCC 4.0.1 (Debian 4.0.1-2)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from os import statvfs >>> statvfs(".") (8192, 8192, 439319319908352, 555738703433615, 555584084638029, 0, 0, 255, 0, 0) >>> So still a problem. -- Falk -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]