mirror of
https://github.com/python/cpython.git
synced 2025-10-09 08:31:26 +00:00
#15377: Make posixpath.join() more strict when checking for str/bytes mix
Based on a patch by Nick Coghlan.
This commit is contained in:
commit
1815191f17
2 changed files with 18 additions and 13 deletions
|
@ -83,12 +83,13 @@ def join(a, *p):
|
|||
else:
|
||||
path += sep + b
|
||||
except TypeError:
|
||||
strs = [isinstance(s, str) for s in (a, ) + p]
|
||||
if any(strs) and not all(strs):
|
||||
valid_types = all(isinstance(s, (str, bytes, bytearray))
|
||||
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.") from None
|
||||
else:
|
||||
raise
|
||||
raise
|
||||
return path
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue