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

Method g1

Lib/test/test_yield_from.py:26–29  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

24 """
25 trace = []
26 def g1():
27 trace.append("Starting g1")
28 yield from g2()
29 trace.append("Finishing g1")
30 def g2():
31 trace.append("Starting g2")
32 yield 42

Callers

nothing calls this directly

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected