diff options
author | Barney Gale <barney.gale@gmail.com> | 2023-05-26 19:05:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 18:05:43 +0000 |
commit | 328422ce6162eb18735a2c0de12f8a696be97d0c (patch) | |
tree | 30e21f0cee1c74251f04fd1d9929a7c437d13f67 /Lib/test/test_pathlib.py | |
parent | ad0be361c9922a918c7c3eaf83e1d8f2b019279c (diff) | |
download | cpython-328422ce6162eb18735a2c0de12f8a696be97d0c.tar.gz cpython-328422ce6162eb18735a2c0de12f8a696be97d0c.zip |
GH-103631: Fix `PurePosixPath(PureWindowsPath(...))` separator handling (GH-104949)
For backwards compatibility, accept backslashes as path separators in
`PurePosixPath` if an instance of `PureWindowsPath` is supplied.
This restores behaviour from Python 3.11.
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Lib/test/test_pathlib.py')
-rw-r--r-- | Lib/test/test_pathlib.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py index ef202b751e4..01615e20945 100644 --- a/Lib/test/test_pathlib.py +++ b/Lib/test/test_pathlib.py @@ -789,6 +789,12 @@ class PurePosixPathTest(_BasePurePathTest, unittest.TestCase): pp = P('//a') / '/c' self.assertEqual(pp, P('/c')) + def test_parse_windows_path(self): + P = self.cls + p = P('c:', 'a', 'b') + pp = P(pathlib.PureWindowsPath('c:\\a\\b')) + self.assertEqual(p, pp) + class PureWindowsPathTest(_BasePurePathTest, unittest.TestCase): cls = pathlib.PureWindowsPath |