| 1260 | ] |
| 1261 | for cls in UnicodeEncodeError, UnicodeDecodeError, UnicodeTranslateError: |
| 1262 | class FakeUnicodeError(str): |
| 1263 | __class__ = cls |
| 1264 | for handler in handlers: |
| 1265 | with self.subTest(handler=handler, error_class=cls): |
| 1266 | self.assertRaises(TypeError, handler, FakeUnicodeError()) |
no outgoing calls
searching dependent graphs…