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

Method visit_Interactive

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

Source from the content-addressed store, hash-verified

211 self._type_ignores.clear()
212
213 def visit_Interactive(self, node):
214 self._in_interactive = True
215 try:
216 self._write_docstring_and_traverse_body(node)
217 finally:
218 self._in_interactive = False
219
220 def visit_FunctionType(self, node):
221 with self.delimit("(", ")"):

Callers

nothing calls this directly

Tested by

no test coverage detected