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
1b02da95
Commit
1b02da95
authored
Jan 03, 2014
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #20111: pathlib.Path.with_suffix() now sanity checks the given suffix.
parent
8ec15f7a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
Lib/pathlib.py
Lib/pathlib.py
+6
-0
Lib/test/test_pathlib.py
Lib/test/test_pathlib.py
+20
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/pathlib.py
View file @
1b02da95
...
...
@@ -755,6 +755,12 @@ class PurePath(object):
def
with_suffix
(
self
,
suffix
):
"""Return a new path with the file suffix changed (or added, if none)."""
# XXX if suffix is None, should the current suffix be removed?
drv
,
root
,
parts
=
self
.
_flavour
.
parse_parts
((
suffix
,))
if
drv
or
root
or
len
(
parts
)
!=
1
:
raise
ValueError
(
"Invalid suffix %r"
%
(
suffix
))
suffix
=
parts
[
0
]
if
not
suffix
.
startswith
(
'.'
):
raise
ValueError
(
"Invalid suffix %r"
%
(
suffix
))
name
=
self
.
name
if
not
name
:
raise
ValueError
(
"%r has an empty name"
%
(
self
,))
...
...
Lib/test/test_pathlib.py
View file @
1b02da95
...
...
@@ -528,9 +528,16 @@ class _BasePurePathTest(object):
self
.
assertEqual
(
P
(
'/a/b'
).
with_suffix
(
'.gz'
),
P
(
'/a/b.gz'
))
self
.
assertEqual
(
P
(
'a/b.py'
).
with_suffix
(
'.gz'
),
P
(
'a/b.gz'
))
self
.
assertEqual
(
P
(
'/a/b.py'
).
with_suffix
(
'.gz'
),
P
(
'/a/b.gz'
))
# Path doesn't have a "filename" component
self
.
assertRaises
(
ValueError
,
P
(
''
).
with_suffix
,
'.gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'.'
).
with_suffix
,
'.gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'/'
).
with_suffix
,
'.gz'
)
# Invalid suffix
self
.
assertRaises
(
ValueError
,
P
(
'a/b'
).
with_suffix
,
'gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'a/b'
).
with_suffix
,
'/'
)
self
.
assertRaises
(
ValueError
,
P
(
'a/b'
).
with_suffix
,
'/.gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'a/b'
).
with_suffix
,
'c/d'
)
self
.
assertRaises
(
ValueError
,
P
(
'a/b'
).
with_suffix
,
'.c/.d'
)
def
test_relative_to_common
(
self
):
P
=
self
.
cls
...
...
@@ -920,10 +927,23 @@ class PureWindowsPathTest(_BasePurePathTest, unittest.TestCase):
self
.
assertEqual
(
P
(
'c:/a/b'
).
with_suffix
(
'.gz'
),
P
(
'c:/a/b.gz'
))
self
.
assertEqual
(
P
(
'c:a/b.py'
).
with_suffix
(
'.gz'
),
P
(
'c:a/b.gz'
))
self
.
assertEqual
(
P
(
'c:/a/b.py'
).
with_suffix
(
'.gz'
),
P
(
'c:/a/b.gz'
))
# Path doesn't have a "filename" component
self
.
assertRaises
(
ValueError
,
P
(
''
).
with_suffix
,
'.gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'.'
).
with_suffix
,
'.gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'/'
).
with_suffix
,
'.gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'//My/Share'
).
with_suffix
,
'.gz'
)
# Invalid suffix
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'/'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'
\
\
'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'c:'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'/.gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'
\
\
.gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'c:.gz'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'c/d'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'c
\
\
d'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'.c/d'
)
self
.
assertRaises
(
ValueError
,
P
(
'c:a/b'
).
with_suffix
,
'.c
\
\
d'
)
def
test_relative_to
(
self
):
P
=
self
.
cls
...
...
Misc/NEWS
View file @
1b02da95
...
...
@@ -44,6 +44,8 @@ Core and Builtins
Library
-------
- Issue #20111: pathlib.Path.with_suffix() now sanity checks the given suffix.
- Fix breakage in TestSuite.countTestCases() introduced by issue #11798.
- Issue #20108: Avoid parameter name clash in inspect.getcallargs().
...
...
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