MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / __init__

Method __init__

_pydevd_bundle/pydevconsole_code.py:154–162  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

152 with the statement in force."""
153
154 def __init__(self):
155 self.flags = PyCF_DONT_IMPLY_DEDENT
156
157 try:
158 from ast import PyCF_ALLOW_TOP_LEVEL_AWAIT
159
160 self.flags |= PyCF_ALLOW_TOP_LEVEL_AWAIT
161 except:
162 pass
163
164 def __call__(self, source, filename, symbol):
165 codeob = compile(source, filename, symbol, self.flags, 1)

Callers 2

__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected