MCPcopy Index your code
hub / github.com/python/cpython / test_cannot_init

Method test_cannot_init

Lib/test/test_typing.py:9416–9422  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

9414 pass
9415
9416 def test_cannot_init(self):
9417 with self.assertRaises(TypeError):
9418 Required()
9419 with self.assertRaises(TypeError):
9420 type(Required)()
9421 with self.assertRaises(TypeError):
9422 type(Required[Optional[int]])()
9423
9424 def test_no_isinstance(self):
9425 with self.assertRaises(TypeError):

Callers

nothing calls this directly

Calls 2

RequiredFunction · 0.90
assertRaisesMethod · 0.45

Tested by

no test coverage detected