-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
help wantedAn actionable problem of low to medium complexity where a PR would be very welcomeAn actionable problem of low to medium complexity where a PR would be very welcomestubs: improvementImprove/refactor existing annotations, other stubs issuesImprove/refactor existing annotations, other stubs issues
Description
The GDB Python Event API docs say:
events.thread_exited
This is emitted when GDB notices a thread has exited. The event is of type
gdb.ThreadExitedEvent
which extendsgdb.ThreadEvent
. This has a single attribute:Variable: ThreadExitedEvent.inferior_thread
The exiting thread.
But typeshed defines the superclass for gdb.ThreadExitedEvent
as gdb.Event
, not gdb.ThreadEvent
, so the inferior_thread
attribute is missing.
typeshed/stubs/gdb/gdb/__init__.pyi
Line 963 in 9354f93
class ThreadExitedEvent(Event): ... |
Metadata
Metadata
Assignees
Labels
help wantedAn actionable problem of low to medium complexity where a PR would be very welcomeAn actionable problem of low to medium complexity where a PR would be very welcomestubs: improvementImprove/refactor existing annotations, other stubs issuesImprove/refactor existing annotations, other stubs issues