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

Method get_filename

pydevd_attach_to_process/winappdbg/process.py:178–185  ·  view source on GitHub ↗

@rtype: str @return: Filename of the main module of the process.

(self)

Source from the content-addressed store, hash-verified

176 return self.dwProcessId
177
178 def get_filename(self):
179 """
180 @rtype: str
181 @return: Filename of the main module of the process.
182 """
183 if not self.fileName:
184 self.fileName = self.get_image_name()
185 return self.fileName
186
187 def open_handle(self, dwDesiredAccess=win32.PROCESS_ALL_ACCESS):
188 """

Callers 4

get_image_nameMethod · 0.45

Calls 1

get_image_nameMethod · 0.95

Tested by

no test coverage detected