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

Method f

Lib/test/test_raise.py:452–462  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

450 pass
451
452 def f():
453 g = gen()
454 next(g)
455 try:
456 try:
457 raise ValueError
458 except ValueError:
459 del g
460 raise KeyError
461 except Exception as e:
462 self.assertIsInstance(e.__context__, ValueError)
463
464 f()
465

Callers

nothing calls this directly

Calls 5

assertIsInstanceMethod · 0.80
assertNotEqualMethod · 0.80
genFunction · 0.70
CClass · 0.70
collectMethod · 0.45

Tested by

no test coverage detected