diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-11-25 16:48:05 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-11-25 16:48:05 (GMT) |
commit | a783493743366288a9f79f30f7b44361dd4b0ecc (patch) | |
tree | 11367d7dcb7334360a72da8f254afc1cbc5e094e /Doc | |
parent | b121f168943c0f9f3236201aee3e9f29ac4f1299 (diff) | |
parent | d5c6b4785191dc4cb3fbea5b235cdf59723c3ab8 (diff) | |
download | cpython-a783493743366288a9f79f30f7b44361dd4b0ecc.zip cpython-a783493743366288a9f79f30f7b44361dd4b0ecc.tar.gz cpython-a783493743366288a9f79f30f7b44361dd4b0ecc.tar.bz2 |
Issue #28738: Merge from 3.6
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/signal.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 61252ce..039b666 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -350,8 +350,9 @@ The :mod:`signal` module defines the following functions: attribute descriptions in the :mod:`inspect` module). On Windows, :func:`signal` can only be called with :const:`SIGABRT`, - :const:`SIGFPE`, :const:`SIGILL`, :const:`SIGINT`, :const:`SIGSEGV`, or - :const:`SIGTERM`. A :exc:`ValueError` will be raised in any other case. + :const:`SIGFPE`, :const:`SIGILL`, :const:`SIGINT`, :const:`SIGSEGV`, + :const:`SIGTERM`, or :const:`SIGBREAK`. + A :exc:`ValueError` will be raised in any other case. Note that not all systems define the same set of signal names; an :exc:`AttributeError` will be raised if a signal name is not defined as ``SIG*`` module level constant. |