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

Method get_pid

pydevd_attach_to_process/winappdbg/module.py:241–249  ·  view source on GitHub ↗

@rtype: int or None @return: Parent process global ID. Returns C{None} on error.

(self)

Source from the content-addressed store, hash-verified

239 process = property(get_process, set_process, doc="")
240
241 def get_pid(self):
242 """
243 @rtype: int or None
244 @return: Parent process global ID.
245 Returns C{None} on error.
246 """
247 process = self.get_process()
248 if process is not None:
249 return process.get_pid()
250
251 def get_base(self):
252 """

Callers 2

load_symbolsMethod · 0.95
scan_modulesMethod · 0.45

Calls 1

get_processMethod · 0.95

Tested by

no test coverage detected