(self)
| 325 | self.assertRaises(TypeError, hashlib.new, 1) |
| 326 | |
| 327 | def test_new_upper_to_lower(self): |
| 328 | self.assertEqual(hashlib.new("SHA256").name, "sha256") |
| 329 | |
| 330 | @support.thread_unsafe("modifies sys.modules") |
| 331 | def test_get_builtin_constructor(self): |
nothing calls this directly
no test coverage detected