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

Method __init__

_pydevd_frame_eval/pydevd_modify_bytecode.py:17–23  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

15
16class DebugHelper(object):
17 def __init__(self):
18 self._debug_dir = os.path.join(os.path.dirname(__file__), "debug_info")
19 try:
20 os.makedirs(self._debug_dir)
21 except:
22 pass
23 self._next = partial(next, itertools.count(0))
24
25 def _get_filename(self, op_number=None, prefix=""):
26 if op_number is None:

Callers

nothing calls this directly

Calls 2

joinMethod · 0.45
countMethod · 0.45

Tested by

no test coverage detected