(self)
| 352 | self.assertRaisesRegex(TypeError, err, hashlib.new, 1) |
| 353 | |
| 354 | def test_new_upper_to_lower(self): |
| 355 | self.assertEqual(hashlib.new("SHA256").name, "sha256") |
| 356 | |
| 357 | @support.thread_unsafe("modifies sys.modules") |
| 358 | def test_get_builtin_constructor(self): |
nothing calls this directly
no test coverage detected