summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-08-24 12:18:09 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2014-08-24 12:18:09 +0300
commitc4c19d859af47a76f5a6864b08ce87db4aaa3091 (patch)
treea311b3e92cb2c5df7bcb5fcad4b8f17cf1cd6a49
parent707e211e6437a238607e011ff8a2a60bc5dead82 (diff)
downloadcpython-c4c19d859af47a76f5a6864b08ce87db4aaa3091.tar.gz
Issue #22034: Got rid of misleading error message for bytearray arguments in
posixpath.join().
-rw-r--r--Lib/posixpath.py6
-rw-r--r--Lib/test/test_posixpath.py20
2 files changed, 10 insertions, 16 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index eb17dbab07..0aa53feac2 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -83,12 +83,10 @@ def join(a, *p):
else:
path += sep + b
except TypeError:
- valid_types = all(isinstance(s, (str, bytes, bytearray))
- for s in (a, ) + p)
- if valid_types:
+ if all(isinstance(s, (str, bytes)) for s in (a,) + p):
# Must have a mixture of text and binary data
raise TypeError("Can't mix strings and bytes in path "
- "components.") from None
+ "components") from None
raise
return path
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py
index 412849cff3..ec2fbaee32 100644
--- a/Lib/test/test_posixpath.py
+++ b/Lib/test/test_posixpath.py
@@ -57,21 +57,17 @@ class PosixPathTest(unittest.TestCase):
self.assertEqual(posixpath.join(b"/foo/", b"bar/", b"baz/"),
b"/foo/bar/baz/")
- def check_error_msg(list_of_args, msg):
- """Check posixpath.join raises friendly TypeErrors."""
- for args in (item for perm in list_of_args
- for item in itertools.permutations(perm)):
- with self.assertRaises(TypeError) as cm:
- posixpath.join(*args)
- self.assertEqual(msg, cm.exception.args[0])
-
- check_error_msg([[b'bytes', 'str'], [bytearray(b'bytes'), 'str']],
- "Can't mix strings and bytes in path components.")
+ def test_join_errors(self):
+ # Check posixpath.join raises friendly TypeErrors.
+ errmsg = "Can't mix strings and bytes in path components"
+ with self.assertRaisesRegex(TypeError, errmsg):
+ posixpath.join(b'bytes', 'str')
+ with self.assertRaisesRegex(TypeError, errmsg):
+ posixpath.join('str', b'bytes')
# regression, see #15377
with self.assertRaises(TypeError) as cm:
posixpath.join(None, 'str')
- self.assertNotEqual("Can't mix strings and bytes in path components.",
- cm.exception.args[0])
+ self.assertNotEqual(cm.exception.args[0], errmsg)
def test_split(self):
self.assertEqual(posixpath.split("/foo/bar"), ("/foo", "bar"))