Marked keystrokes with the :kbd: role.

Fixed the case of the "Ctrl-" prefixes.
This commit is contained in:
Serhiy Storchaka 2015-09-12 17:45:25 +03:00
parent 06171bd52a
commit 0424eaf753
19 changed files with 32 additions and 32 deletions

View file

@ -1657,7 +1657,7 @@ class Win32KillTests(unittest.TestCase):
os.kill(proc.pid, signal.SIGINT)
self.fail("subprocess did not stop on {}".format(name))
@unittest.skip("subprocesses aren't inheriting CTRL+C property")
@unittest.skip("subprocesses aren't inheriting Ctrl+C property")
def test_CTRL_C_EVENT(self):
from ctypes import wintypes
import ctypes
@ -1670,7 +1670,7 @@ class Win32KillTests(unittest.TestCase):
SetConsoleCtrlHandler.restype = wintypes.BOOL
# Calling this with NULL and FALSE causes the calling process to
# handle CTRL+C, rather than ignore it. This property is inherited
# handle Ctrl+C, rather than ignore it. This property is inherited
# by subprocesses.
SetConsoleCtrlHandler(NULL, 0)