diff options
author | Eli Bendersky <eliben@gmail.com> | 2012-07-17 11:22:01 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2012-07-17 11:22:01 (GMT) |
commit | ceb23316c85022541bac39c7ce814a659c7e1962 (patch) | |
tree | cbcfac900321e46b39d944a14fe5afb41a80ed65 /Lib/posixpath.py | |
parent | 66099b0cdcce7ee6d0d384a6f7687499bc67f15e (diff) | |
parent | c5a45669229906a2ff8ea87bd69d1df2feac8ffc (diff) | |
download | cpython-ceb23316c85022541bac39c7ce814a659c7e1962.zip cpython-ceb23316c85022541bac39c7ce814a659c7e1962.tar.gz cpython-ceb23316c85022541bac39c7ce814a659c7e1962.tar.bz2 |
merge heads
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r-- | Lib/posixpath.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 84bcc13..7a4daa8b 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -83,11 +83,12 @@ 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.") - else: - raise + raise return path |