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 eryksun
Recipients Deniz Bozyigit, eryksun, paul.moore, r.david.murray, steve.dower, tim.golden, zach.ware
Date 2018-06-22.02:07:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529633255.38.0.56676864532.issue33935@psf.upfronthosting.co.za>
In-reply-to
Content
David, this is a bug in Python, and the proposed patch is insufficient. We use the volume serial number as st_dev, and this is not guaranteed to be unique in Windows, and may be 0, just as a file's index number is also allowed to be 0. Both possibilities are well documented. With a WebDAV volume you will find that both numbers are 0. Using the VSN and file index as if they're the same as POSIX st_dev and st_ino is technically wrong. There is no guarantee that this tuple uniquely identifies a file in Windows.
History
Date User Action Args
2018-06-22 02:07:35eryksunsetrecipients: + eryksun, paul.moore, tim.golden, r.david.murray, zach.ware, steve.dower, Deniz Bozyigit
2018-06-22 02:07:35eryksunsetmessageid: <1529633255.38.0.56676864532.issue33935@psf.upfronthosting.co.za>
2018-06-22 02:07:35eryksunlinkissue33935 messages
2018-06-22 02:07:34eryksuncreate