Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a993902a
Commit
a993902a
authored
Dec 06, 2013
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #19908: pathlib now joins relative Windows paths correctly when a drive
is present. Original patch by Antoine Pitrou.
parent
1b8b868b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
5 deletions
+53
-5
Lib/pathlib.py
Lib/pathlib.py
+9
-5
Lib/test/test_pathlib.py
Lib/test/test_pathlib.py
+42
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/pathlib.py
View file @
a993902a
...
...
@@ -89,12 +89,16 @@ class _Flavour(object):
(drive, root, parts) tuples. Return a new (drive, root, parts) tuple.
"""
if
root2
:
parts
=
parts2
root
=
root2
if
not
drv2
and
drv
:
return
drv
,
root2
,
[
drv
+
root2
]
+
parts2
[
1
:]
elif
drv2
:
if
drv2
==
drv
or
self
.
casefold
(
drv2
)
==
self
.
casefold
(
drv
):
# Same drive => second path is relative to the first
return
drv
,
root
,
parts
+
parts2
[
1
:]
else
:
parts
=
parts
+
parts2
# XXX raise error if drv and drv2 are different?
return
drv2
or
drv
,
root
,
parts
# Second path is non-anchored (common case)
return
drv
,
root
,
parts
+
parts2
return
drv2
,
root2
,
parts2
class
_WindowsFlavour
(
_Flavour
):
...
...
Lib/test/test_pathlib.py
View file @
a993902a
...
...
@@ -975,6 +975,48 @@ class PureWindowsPathTest(_BasePurePathTest, unittest.TestCase):
self
.
assertTrue
(
P
(
'//a/b/c'
).
is_absolute
())
self
.
assertTrue
(
P
(
'//a/b/c/d'
).
is_absolute
())
def
test_join
(
self
):
P
=
self
.
cls
p
=
P
(
'C:/a/b'
)
pp
=
p
.
joinpath
(
'x/y'
)
self
.
assertEqual
(
pp
,
P
(
'C:/a/b/x/y'
))
pp
=
p
.
joinpath
(
'/x/y'
)
self
.
assertEqual
(
pp
,
P
(
'C:/x/y'
))
# Joining with a different drive => the first path is ignored, even
# if the second path is relative.
pp
=
p
.
joinpath
(
'D:x/y'
)
self
.
assertEqual
(
pp
,
P
(
'D:x/y'
))
pp
=
p
.
joinpath
(
'D:/x/y'
)
self
.
assertEqual
(
pp
,
P
(
'D:/x/y'
))
pp
=
p
.
joinpath
(
'//host/share/x/y'
)
self
.
assertEqual
(
pp
,
P
(
'//host/share/x/y'
))
# Joining with the same drive => the first path is appended to if
# the second path is relative.
pp
=
p
.
joinpath
(
'c:x/y'
)
self
.
assertEqual
(
pp
,
P
(
'C:/a/b/x/y'
))
pp
=
p
.
joinpath
(
'c:/x/y'
)
self
.
assertEqual
(
pp
,
P
(
'C:/x/y'
))
def
test_div
(
self
):
# Basically the same as joinpath()
P
=
self
.
cls
p
=
P
(
'C:/a/b'
)
self
.
assertEqual
(
p
/
'x/y'
,
P
(
'C:/a/b/x/y'
))
self
.
assertEqual
(
p
/
'x'
/
'y'
,
P
(
'C:/a/b/x/y'
))
self
.
assertEqual
(
p
/
'/x/y'
,
P
(
'C:/x/y'
))
self
.
assertEqual
(
p
/
'/x'
/
'y'
,
P
(
'C:/x/y'
))
# Joining with a different drive => the first path is ignored, even
# if the second path is relative.
self
.
assertEqual
(
p
/
'D:x/y'
,
P
(
'D:x/y'
))
self
.
assertEqual
(
p
/
'D:'
/
'x/y'
,
P
(
'D:x/y'
))
self
.
assertEqual
(
p
/
'D:/x/y'
,
P
(
'D:/x/y'
))
self
.
assertEqual
(
p
/
'D:'
/
'/x/y'
,
P
(
'D:/x/y'
))
self
.
assertEqual
(
p
/
'//host/share/x/y'
,
P
(
'//host/share/x/y'
))
# Joining with the same drive => the first path is appended to if
# the second path is relative.
self
.
assertEqual
(
p
/
'C:x/y'
,
P
(
'C:/a/b/x/y'
))
self
.
assertEqual
(
p
/
'C:/x/y'
,
P
(
'C:/x/y'
))
def
test_is_reserved
(
self
):
P
=
self
.
cls
self
.
assertIs
(
False
,
P
(
''
).
is_reserved
())
...
...
Misc/NEWS
View file @
a993902a
...
...
@@ -18,6 +18,8 @@ Core and Builtins
Library
-------
- Issue #19908: pathlib now joins relative Windows paths correctly when a drive
is present. Original patch by Antoine Pitrou.
- Issue #19296: Silence compiler warning in dbm_open
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment