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

Method __init__

_pydevd_bundle/pydevd_frame_utils.py:277–284  ·  view source on GitHub ↗
(self, frame, f_lineno, f_back)

Source from the content-addressed store, hash-verified

275
276class _DummyFrameWrapper(object):
277 def __init__(self, frame, f_lineno, f_back):
278 self._base_frame = frame
279 self.f_lineno = f_lineno
280 self.f_back = f_back
281 self.f_trace = None
282 original_code = frame.f_code
283 name = original_code.co_name
284 self.f_code = FCode(name, original_code.co_filename)
285
286 @property
287 def f_locals(self):

Callers

nothing calls this directly

Calls 1

FCodeClass · 0.85

Tested by

no test coverage detected