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 mark
Recipients dawidjoubert, ezio.melotti, mark, steve.dower, tim.golden, valhallasw, zach.ware
Date 2019-06-17.11:40:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560771646.06.0.476241810373.issue4198@roundup.psfhosted.org>
In-reply-to
Content
When running a VirtualBox Windows 7 guest on Linux I have found that os.path.samefile() returns False when the filenames are the same, e.g.,

f = r'V:\pdfs\boson1.pdf'
same = os.path.samefile(f, f)
print(same) # expected True; got False

I mention it here because it may be part of the same problem.
I'm using Python 3.7.2.
History
Date User Action Args
2019-06-17 11:40:46marksetrecipients: + mark, tim.golden, ezio.melotti, dawidjoubert, valhallasw, zach.ware, steve.dower
2019-06-17 11:40:46marksetmessageid: <1560771646.06.0.476241810373.issue4198@roundup.psfhosted.org>
2019-06-17 11:40:46marklinkissue4198 messages
2019-06-17 11:40:45markcreate