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
c5a45669
Commit
c5a45669
authored
Jul 17, 2012
by
Hynek Schlawack
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#15377: Make posixpath.join() more strict when checking for str/bytes mix
Based on a patch by Nick Coghlan.
parent
eb3e62f1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
14 deletions
+19
-14
Lib/posixpath.py
Lib/posixpath.py
+5
-4
Lib/test/test_posixpath.py
Lib/test/test_posixpath.py
+14
-10
No files found.
Lib/posixpath.py
View file @
c5a45669
...
@@ -83,10 +83,11 @@ def join(a, *p):
...
@@ -83,10 +83,11 @@ def join(a, *p):
else
:
else
:
path
+=
sep
+
b
path
+=
sep
+
b
except
TypeError
:
except
TypeError
:
strs
=
[
isinstance
(
s
,
str
)
for
s
in
(
a
,
)
+
p
]
valid_types
=
all
(
isinstance
(
s
,
(
str
,
bytes
,
bytearray
))
if
any
(
strs
)
and
not
all
(
strs
):
for
s
in
(
a
,
)
+
p
)
if
valid_types
:
# Must have a mixture of text and binary data
raise
TypeError
(
"Can't mix strings and bytes in path components."
)
raise
TypeError
(
"Can't mix strings and bytes in path components."
)
else
:
raise
raise
return
path
return
path
...
...
Lib/test/test_posixpath.py
View file @
c5a45669
import
unittest
import
unittest
from
test
import
support
,
test_genericpath
from
test
import
support
,
test_genericpath
import
itertools
import
posixpath
import
posixpath
import
os
import
os
import
sys
import
sys
...
@@ -56,18 +57,21 @@ class PosixPathTest(unittest.TestCase):
...
@@ -56,18 +57,21 @@ class PosixPathTest(unittest.TestCase):
self
.
assertEqual
(
posixpath
.
join
(
b"/foo/"
,
b"bar/"
,
b"baz/"
),
self
.
assertEqual
(
posixpath
.
join
(
b"/foo/"
,
b"bar/"
,
b"baz/"
),
b"/foo/bar/baz/"
)
b"/foo/bar/baz/"
)
# Check for friendly str/bytes mixing message
def
check_error_msg
(
list_of_args
,
msg
):
for
args
in
[[
b'bytes'
,
'str'
],
"""Check posixpath.join raises friendly TypeErrors."""
[
bytearray
(
b'bytes'
),
'str'
]]:
for
args
in
(
item
for
perm
in
list_of_args
for
_
in
range
(
2
):
for
item
in
itertools
.
permutations
(
perm
)
):
with
self
.
assertRaises
(
TypeError
)
as
cm
:
with
self
.
assertRaises
(
TypeError
)
as
cm
:
posixpath
.
join
(
*
args
)
posixpath
.
join
(
*
args
)
self
.
assertEqual
(
self
.
assertEqual
(
msg
,
cm
.
exception
.
args
[
0
])
"Can't mix strings and bytes in path components."
,
cm
.
exception
.
args
[
0
]
)
args
.
reverse
()
# check both orders
check_error_msg
([[
b'bytes'
,
'str'
],
[
bytearray
(
b'bytes'
),
'str'
]],
"Can't mix strings and bytes in path components."
)
# regression, see #15377
with
self
.
assertRaises
(
TypeError
)
as
cm
:
os
.
path
.
join
(
None
,
'str'
)
self
.
assertNotEqual
(
"Can't mix strings and bytes in path components."
,
cm
.
exception
.
args
[
0
])
def
test_split
(
self
):
def
test_split
(
self
):
self
.
assertEqual
(
posixpath
.
split
(
"/foo/bar"
),
(
"/foo"
,
"bar"
))
self
.
assertEqual
(
posixpath
.
split
(
"/foo/bar"
),
(
"/foo"
,
"bar"
))
...
...
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