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

Method visit_FunctionDef

Lib/_ast_unparse.py:417–418  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

415 self._write_docstring_and_traverse_body(node)
416
417 def visit_FunctionDef(self, node):
418 self._function_helper(node, "def")
419
420 def visit_AsyncFunctionDef(self, node):
421 self._function_helper(node, "async def")

Callers

nothing calls this directly

Calls 1

_function_helperMethod · 0.95

Tested by

no test coverage detected