diff -r ff4b9d654691 Lib/test/test_bytes.py --- a/Lib/test/test_bytes.py Thu Sep 11 12:17:37 2014 +0300 +++ b/Lib/test/test_bytes.py Fri Sep 12 14:43:35 2014 +0800 @@ -298,6 +298,7 @@ seq = [b"abc"] * 1000 expected = b"abc" + b".:abc" * 999 self.assertEqual(dot_join(seq), expected) + self.assertRaises(TypeError, self.type2test(b" ").join, None) # Error handling and cleanup when some item in the middle of the # sequence has the wrong type. with self.assertRaises(TypeError):