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 mcjeff
Recipients brian.curtin, georg.brandl, lygstate, mcjeff, ncoghlan, tim.golden
Date 2012-03-14.03:40:55
SpamBayes Score 1.7476659e-10
Marked as misclassified No
Message-id <1331696456.4.0.565005638487.issue14255@psf.upfronthosting.co.za>
In-reply-to
Content
The actual implementation calls os.path.normcase from tempfile._get_default_tempdir. In this scenario here, that resolves to the ntpath module & triggers a lowercase conversion.

On the other hand, the posixpath module is simply an identity function.

Now, it *is* possible to force a Windows file system to run in a case-sensitive configuration. Since ntpath.py forces lower case, this could actually cause breakage in that situation, however rare.

In my opinion, changing the ntpath.normcase function to retain case probably yields more correct behavior.
History
Date User Action Args
2012-03-14 03:40:56mcjeffsetrecipients: + mcjeff, georg.brandl, ncoghlan, tim.golden, brian.curtin, lygstate
2012-03-14 03:40:56mcjeffsetmessageid: <1331696456.4.0.565005638487.issue14255@psf.upfronthosting.co.za>
2012-03-14 03:40:55mcjefflinkissue14255 messages
2012-03-14 03:40:55mcjeffcreate