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

Method test_cannot_init

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

Source from the content-addressed store, hash-verified

9462 pass
9463
9464 def test_cannot_init(self):
9465 with self.assertRaises(TypeError):
9466 NotRequired()
9467 with self.assertRaises(TypeError):
9468 type(NotRequired)()
9469 with self.assertRaises(TypeError):
9470 type(NotRequired[Optional[int]])()
9471
9472 def test_no_isinstance(self):
9473 with self.assertRaises(TypeError):

Callers

nothing calls this directly

Calls 2

NotRequiredFunction · 0.90
assertRaisesMethod · 0.45

Tested by

no test coverage detected