mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-30 08:04:24 +08:00
This commit is contained in:
committed by
Jelle Zijlstra
parent
226f0553fe
commit
dc0fcdcaa0
@@ -1,48 +1,57 @@
|
||||
from typing import Callable, Any, Tuple, Union
|
||||
from types import FrameType
|
||||
|
||||
SIG_DFL = ... # type: int
|
||||
SIG_IGN = ... # type: int
|
||||
ITIMER_REAL = ... # type: int
|
||||
ITIMER_VIRTUAL = ... # type: int
|
||||
ITIMER_PROF = ... # type: int
|
||||
SIG_DFL: int = ...
|
||||
SIG_IGN: int = ...
|
||||
|
||||
SIGABRT = ... # type: int
|
||||
SIGALRM = ... # type: int
|
||||
SIGBUS = ... # type: int
|
||||
SIGCHLD = ... # type: int
|
||||
SIGCLD = ... # type: int
|
||||
SIGCONT = ... # type: int
|
||||
SIGFPE = ... # type: int
|
||||
SIGHUP = ... # type: int
|
||||
SIGILL = ... # type: int
|
||||
SIGINT = ... # type: int
|
||||
SIGIO = ... # type: int
|
||||
SIGIOT = ... # type: int
|
||||
SIGKILL = ... # type: int
|
||||
SIGPIPE = ... # type: int
|
||||
SIGPOLL = ... # type: int
|
||||
SIGPROF = ... # type: int
|
||||
SIGPWR = ... # type: int
|
||||
SIGQUIT = ... # type: int
|
||||
SIGRTMAX = ... # type: int
|
||||
SIGRTMIN = ... # type: int
|
||||
SIGSEGV = ... # type: int
|
||||
SIGSTOP = ... # type: int
|
||||
SIGSYS = ... # type: int
|
||||
SIGTERM = ... # type: int
|
||||
SIGTRAP = ... # type: int
|
||||
SIGTSTP = ... # type: int
|
||||
SIGTTIN = ... # type: int
|
||||
SIGTTOU = ... # type: int
|
||||
SIGURG = ... # type: int
|
||||
SIGUSR1 = ... # type: int
|
||||
SIGUSR2 = ... # type: int
|
||||
SIGVTALRM = ... # type: int
|
||||
SIGWINCH = ... # type: int
|
||||
SIGXCPU = ... # type: int
|
||||
SIGXFSZ = ... # type: int
|
||||
NSIG = ... # type: int
|
||||
ITIMER_REAL: int = ...
|
||||
ITIMER_VIRTUAL: int = ...
|
||||
ITIMER_PROF: int = ...
|
||||
|
||||
NSIG: int = ...
|
||||
|
||||
SIGABRT: int = ...
|
||||
SIGALRM: int = ...
|
||||
SIGBREAK: int = ... # Windows
|
||||
SIGBUS: int = ...
|
||||
SIGCHLD: int = ...
|
||||
SIGCLD: int = ...
|
||||
SIGCONT: int = ...
|
||||
SIGEMT: int = ...
|
||||
SIGFPE: int = ...
|
||||
SIGHUP: int = ...
|
||||
SIGILL: int = ...
|
||||
SIGINFO: int = ...
|
||||
SIGINT: int = ...
|
||||
SIGIO: int = ...
|
||||
SIGIOT: int = ...
|
||||
SIGKILL: int = ...
|
||||
SIGPIPE: int = ...
|
||||
SIGPOLL: int = ...
|
||||
SIGPROF: int = ...
|
||||
SIGPWR: int = ...
|
||||
SIGQUIT: int = ...
|
||||
SIGRTMAX: int = ...
|
||||
SIGRTMIN: int = ...
|
||||
SIGSEGV: int = ...
|
||||
SIGSTOP: int = ...
|
||||
SIGSYS: int = ...
|
||||
SIGTERM: int = ...
|
||||
SIGTRAP: int = ...
|
||||
SIGTSTP: int = ...
|
||||
SIGTTIN: int = ...
|
||||
SIGTTOU: int = ...
|
||||
SIGURG: int = ...
|
||||
SIGUSR1: int = ...
|
||||
SIGUSR2: int = ...
|
||||
SIGVTALRM: int = ...
|
||||
SIGWINCH: int = ...
|
||||
SIGXCPU: int = ...
|
||||
SIGXFSZ: int = ...
|
||||
|
||||
# Windows
|
||||
CTRL_C_EVENT: int = ...
|
||||
CTRL_BREAK_EVENT: int = ...
|
||||
|
||||
class ItimerError(IOError): ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user