We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c48ede8 commit d28d112Copy full SHA for d28d112
1 file changed
stdlib/signal.pyi
@@ -9,18 +9,19 @@ from typing_extensions import Never, TypeAlias
9
NSIG: int
10
11
class Signals(IntEnum):
12
- SIGABRT = 6
13
SIGFPE = 8
14
SIGILL = 4
15
SIGINT = 2
16
SIGSEGV = 11
17
SIGTERM = 15
18
19
if sys.platform == "win32":
+ SIGABRT = 22
20
SIGBREAK = 21
21
CTRL_C_EVENT = 0
22
CTRL_BREAK_EVENT = 1
23
else:
24
+ SIGABRT = 6
25
SIGALRM = 14
26
SIGBUS = 7
27
SIGCHLD = 17
0 commit comments