Message6730

Author ked
Recipients ked
Date 2011-11-22.08:28:01
SpamBayes Score 7.605909e-07
Marked as misclassified No
Message-id <1321950482.02.0.320222792734.issue1822@psf.upfronthosting.co.za>
In-reply-to
Content
os.stat returns wrong inode number, device, number of hard links, ids and size on SunOS 5.10 / x86 (it works well with SunOS 5.10 / sparc)

Example :

>>> platform.platform()
'Java-1.5.0_22-Java_HotSpot-TM-_Server_VM,_1.5.0_22-b03,_Sun_Microsystems_Inc.-on-SunOS-5.10-x86'
>>> os.stat('foo')
(33206, 0L, -1L, -1, -1, -1, 0L, 1321949534, 1321949534, 1321949538)


>>> platform.platform()
'Java-1.5.0_24-Java_HotSpot-TM-_Server_VM,_1.5.0_24-b02,_Sun_Microsystems_Inc.-on-SunOS-5.10-sparc'
>>> os.stat('foo')
(33206, 192086L, 93585416L, 1, 24960, 1002, 0L, 1321949534, 1321949534, 1321949534)
History
Date User Action Args
2011-11-22 08:28:02kedsetrecipients: + ked
2011-11-22 08:28:02kedsetmessageid: <1321950482.02.0.320222792734.issue1822@psf.upfronthosting.co.za>
2011-11-22 08:28:01kedlinkissue1822 messages
2011-11-22 08:28:01kedcreate