MCPcopy Create free account
hub / github.com/Vector35/debugger / __init__

Method __init__

api/python/debuggercontroller.py:320–327  ·  view source on GitHub ↗
(self, index, pc, sp, fp, func_name, func_start, module)

Source from the content-addressed store, hash-verified

318
319 """
320 def __init__(self, index, pc, sp, fp, func_name, func_start, module):
321 self.index = index
322 self.pc = pc
323 self.sp = sp
324 self.fp = fp
325 self.func_name = func_name
326 self.func_start = func_start
327 self.module = module
328
329 def __eq__(self, other):
330 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected