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

Method debug

Lib/idlelib/rpc.py:153–159  ·  view source on GitHub ↗
(self, *args)

Source from the content-addressed store, hash-verified

151 os._exit(0)
152
153 def debug(self, *args):
154 if not self.debugging:
155 return
156 s = self.location + " " + str(threading.current_thread().name)
157 for a in args:
158 s = s + " " + str(a)
159 print(s, file=sys.__stderr__)
160
161 def register(self, oid, object_):
162 self.objtable[oid] = object_

Callers 15

localcallMethod · 0.95
remotecallMethod · 0.95
remotequeueMethod · 0.95
asynccallMethod · 0.95
asyncqueueMethod · 0.95
asyncreturnMethod · 0.95
decoderesponseMethod · 0.95
mainloopMethod · 0.95
_getresponseMethod · 0.95
putmessageMethod · 0.95
pollresponseMethod · 0.95
handle_EOFMethod · 0.95

Calls 1

strFunction · 0.85

Tested by

no test coverage detected