Commit ceb23316 authored by Eli Bendersky's avatar Eli Bendersky

merge heads

parents 66099b0c c5a45669
...@@ -83,11 +83,12 @@ def join(a, *p): ...@@ -83,11 +83,12 @@ 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
......
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,15 +57,21 @@ class PosixPathTest(unittest.TestCase): ...@@ -56,15 +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/")
with self.assertRaises(TypeError) as e: def check_error_msg(list_of_args, msg):
posixpath.join(b'bytes', 'str') """Check posixpath.join raises friendly TypeErrors."""
self.assertIn("Can't mix strings and bytes", e.args[0]) for args in (item for perm in list_of_args
with self.assertRaises(TypeError) as e: for item in itertools.permutations(perm)):
posixpath.join('str', b'bytes') with self.assertRaises(TypeError) as cm:
self.assertIn("Can't mix strings and bytes", e.args[0]) posixpath.join(*args)
with self.assertRaises(TypeError) as e: self.assertEqual(msg, cm.exception.args[0])
posixpath.join('str', bytearray(b'bytes'))
self.assertIn("Can't mix strings and bytes", e.args[0]) 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"))
......
...@@ -182,7 +182,7 @@ class RunModuleTestCase(unittest.TestCase, CodeExecutionMixin): ...@@ -182,7 +182,7 @@ class RunModuleTestCase(unittest.TestCase, CodeExecutionMixin):
def _make_pkg(self, source, depth, mod_base="runpy_test"): def _make_pkg(self, source, depth, mod_base="runpy_test"):
pkg_name = "__runpy_pkg__" pkg_name = "__runpy_pkg__"
test_fname = mod_base+os.extsep+"py" test_fname = mod_base+os.extsep+"py"
pkg_dir = sub_dir = tempfile.mkdtemp() pkg_dir = sub_dir = os.path.realpath(tempfile.mkdtemp())
if verbose > 1: print(" Package tree in:", sub_dir) if verbose > 1: print(" Package tree in:", sub_dir)
sys.path.insert(0, pkg_dir) sys.path.insert(0, pkg_dir)
if verbose > 1: print(" Updated sys.path:", sys.path[0]) if verbose > 1: print(" Updated sys.path:", sys.path[0])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment