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 arigo
Recipients arigo, eryksun, paul.moore, steve.dower, tim.golden, zach.ware
Date 2017-06-11.20:15:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1497212158.74.0.563775567698.issue30480@psf.upfronthosting.co.za>
In-reply-to
Content
Another example of this misbehaviour: there are cases where ``os.stat()`` will internally fail to obtain the whole stat info (in some case related to permissions) and silently fall back to the same behaviour as Python 2.7.  In particular, it will return a result with ``st_dev == st_ino == 0``.  Of course, ``os.path.samefile()`` will then consider all such files as "the same one", which is nonsense.
History
Date User Action Args
2017-06-11 20:15:58arigosetrecipients: + arigo, paul.moore, tim.golden, zach.ware, eryksun, steve.dower
2017-06-11 20:15:58arigosetmessageid: <1497212158.74.0.563775567698.issue30480@psf.upfronthosting.co.za>
2017-06-11 20:15:58arigolinkissue30480 messages
2017-06-11 20:15:58arigocreate