* 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? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]