MCPcopy Create free account
hub / github.com/ipython/ipython / __init__

Method __init__

IPython/core/async_helpers.py:101–105  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

99 is erroneously allowed (e.g. yield or return at the top level)
100 """
101 def __init__(self):
102 if sys.version_info >= (3,8):
103 raise ValueError('DEPRECATED in Python 3.8+')
104 self.depth = 0
105 super().__init__()
106
107 def generic_visit(self, node):
108 func_types = (ast.FunctionDef, ast.AsyncFunctionDef)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected