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

Method get

pydevd_attach_to_process/winappdbg/event.py:1178–1191  ·  view source on GitHub ↗

@type debug: L{Debug} @param debug: Debug object that received the event. @type raw: L{DEBUG_EVENT} @param raw: Raw DEBUG_EVENT structure as used by the Win32 API. @rtype: L{Event} @returns: An Event object or one of it's subclasses, d

(cls, debug, raw)

Source from the content-addressed store, hash-verified

1176
1177 @classmethod
1178 def get(cls, debug, raw):
1179 """
1180 @type debug: L{Debug}
1181 @param debug: Debug object that received the event.
1182
1183 @type raw: L{DEBUG_EVENT}
1184 @param raw: Raw DEBUG_EVENT structure as used by the Win32 API.
1185
1186 @rtype: L{Event}
1187 @returns: An Event object or one of it's subclasses,
1188 depending on the event type.
1189 """
1190 eventClass = cls.eventClasses.get(raw.dwDebugEventCode, cls.baseEvent)
1191 return eventClass(debug, raw)
1192
1193
1194# ==============================================================================

Callers 15

can_skipFunction · 0.45
get_breakpointFunction · 0.45
exception_breakFunction · 0.45
_is_ignoring_failuresFunction · 0.45
can_skipFunction · 0.45
get_breakpointFunction · 0.45
exception_breakFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected