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

Method g

Lib/test/test_generators.py:927–930  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

925 self.check_stack_names(sys._getframe(), ['f', 'g'])
926
927 def g():
928 self.check_stack_names(sys._getframe(), ['g'])
929 yield from f()
930 self.check_stack_names(sys._getframe(), ['g'])
931
932 gen = g()
933 gen.send(None)

Callers

nothing calls this directly

Calls 2

check_stack_namesMethod · 0.95
fFunction · 0.70

Tested by

no test coverage detected