mirror of
https://github.com/python/cpython.git
synced 2025-07-19 17:25:54 +00:00
GH-104947: Make pathlib.PureWindowsPath comparisons consistent across platforms (GH-104948)
Use `str.lower()` rather than `ntpath.normcase()` to normalize case of Windows paths. This restores behaviour from Python 3.11. Co-authored-by: Gregory P. Smith <greg@krypto.org>
This commit is contained in:
parent
060277d96b
commit
ad0be361c9
3 changed files with 7 additions and 1 deletions
|
@ -421,7 +421,10 @@ class PurePath(os.PathLike):
|
|||
try:
|
||||
return self._str_normcase_cached
|
||||
except AttributeError:
|
||||
self._str_normcase_cached = self._flavour.normcase(str(self))
|
||||
if _is_case_sensitive(self._flavour):
|
||||
self._str_normcase_cached = str(self)
|
||||
else:
|
||||
self._str_normcase_cached = str(self).lower()
|
||||
return self._str_normcase_cached
|
||||
|
||||
@property
|
||||
|
|
|
@ -904,6 +904,7 @@ class PureWindowsPathTest(_BasePurePathTest, unittest.TestCase):
|
|||
self.assertEqual(P('a/B'), P('A/b'))
|
||||
self.assertEqual(P('C:a/B'), P('c:A/b'))
|
||||
self.assertEqual(P('//Some/SHARE/a/B'), P('//somE/share/A/b'))
|
||||
self.assertEqual(P('\u0130'), P('i\u0307'))
|
||||
|
||||
def test_as_uri(self):
|
||||
P = self.cls
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Make comparisons between :class:`pathlib.PureWindowsPath` objects consistent
|
||||
across Windows and Posix to match 3.11 behavior.
|
Loading…
Add table
Add a link
Reference in a new issue