mirror of https://github.com/python/cpython
Merged revisions 83745 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83745 | brian.curtin | 2010-08-05 13:56:00 -0500 (Thu, 05 Aug 2010) | 4 lines Issue #9524: Document that two CTRL* signals are meant for use only with os.kill. ........
This commit is contained in:
parent
969fbe3d91
commit
4d80889d13
|
@ -77,7 +77,9 @@ The variables defined in the :mod:`signal` module are:
|
||||||
|
|
||||||
.. data:: CTRL_C_EVENT
|
.. data:: CTRL_C_EVENT
|
||||||
|
|
||||||
The signal corresponding to the CTRL+C keystroke event.
|
The signal corresponding to the CTRL+C keystroke event. This signal can
|
||||||
|
only be used with :func:`os.kill`.
|
||||||
|
|
||||||
Availability: Windows.
|
Availability: Windows.
|
||||||
|
|
||||||
.. versionadded:: 2.7
|
.. versionadded:: 2.7
|
||||||
|
@ -85,7 +87,9 @@ The variables defined in the :mod:`signal` module are:
|
||||||
|
|
||||||
.. data:: CTRL_BREAK_EVENT
|
.. data:: CTRL_BREAK_EVENT
|
||||||
|
|
||||||
The signal corresponding to the CTRL+BREAK keystroke event.
|
The signal corresponding to the CTRL+BREAK keystroke event. This signal can
|
||||||
|
only be used with :func:`os.kill`.
|
||||||
|
|
||||||
Availability: Windows.
|
Availability: Windows.
|
||||||
|
|
||||||
.. versionadded:: 2.7
|
.. versionadded:: 2.7
|
||||||
|
|
|
@ -193,6 +193,9 @@ Tests
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
- Issue #9524: Document that two CTRL* signals are meant for use only
|
||||||
|
with os.kill.
|
||||||
|
|
||||||
- Issue #9255: Document that the 'test' package is for internal Python use
|
- Issue #9255: Document that the 'test' package is for internal Python use
|
||||||
only.
|
only.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue