]> granicus.if.org Git - python/commitdiff
Issue #28738: Document SIGBREAK as an acceptable value on Windows
authorBerker Peksag <berker.peksag@gmail.com>
Fri, 25 Nov 2016 16:46:57 +0000 (19:46 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Fri, 25 Nov 2016 16:46:57 +0000 (19:46 +0300)
Patch by Wojtek Ruszczewski.

Doc/library/signal.rst

index 61252ce4e807ec55794b9b5de479d8d15ab783b4..039b666475a247556b3054b765e72dd69662bca2 100644 (file)
@@ -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.