MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Tools/gdb/libpython.py:2121–2125  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2119class PyBacktrace(gdb.Command):
2120 'Display the current python frame and all the frames within its call stack (if any)'
2121 def __init__(self):
2122 gdb.Command.__init__ (self,
2123 "py-bt",
2124 gdb.COMMAND_STACK,
2125 gdb.COMPLETE_NONE)
2126
2127 def invoke(self, args, from_tty):
2128 print_traceback_helper(full_info=False)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected