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

Method set_handle

pydevd_attach_to_process/winappdbg/module.py:200–207  ·  view source on GitHub ↗

@type hFile: L{Handle} @param hFile: File handle. Use C{None} to clear.

(self, hFile)

Source from the content-addressed store, hash-verified

198 return self.__hFile
199
200 def set_handle(self, hFile):
201 """
202 @type hFile: L{Handle}
203 @param hFile: File handle. Use C{None} to clear.
204 """
205 if hFile == win32.INVALID_HANDLE_VALUE:
206 hFile = None
207 self.__hFile = hFile
208
209 hFile = property(get_handle, set_handle, doc="")
210

Callers 1

__init__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected