reassign 324051 python2.3
thanks

* Falk Hueffner <[EMAIL PROTECTED]> [2005-08-24 22:46]:
> > 1. does the following work okay?
> >
> > 8425:[EMAIL PROTECTED]: ~] python
> >>>> from os import statvfs
> >>>> statvfs(".")
> > (4096, 4096, 4643036L, 1401905L, 1401905L, 2359296L, 2269308L, 2269308L, 0, 
> > 255)
> 
> [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?

Looks like it.  doko, can you please look at this?  This is in both
2.3 and 2.4.  I'm surprised that Python would have such a bug that's
still not fixed but maybe it's just not compiled with the right
options or something?
-- 
Martin Michlmayr
http://www.cyrius.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to