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

Method get_pid

pydevd_attach_to_process/winappdbg/window.py:159–167  ·  view source on GitHub ↗

@rtype: int @return: Global ID of the process that owns this window.

(self)

Source from the content-addressed store, hash-verified

157 return self.hWnd
158
159 def get_pid(self):
160 """
161 @rtype: int
162 @return: Global ID of the process that owns this window.
163 """
164 if self.dwProcessId is not None:
165 return self.dwProcessId
166 self.__get_pid_and_tid()
167 return self.dwProcessId
168
169 def get_tid(self):
170 """

Callers 3

get_processMethod · 0.95
__get_windowMethod · 0.95
set_processMethod · 0.45

Calls 1

__get_pid_and_tidMethod · 0.95

Tested by

no test coverage detected