From 0424eaf7533b0f386f6038dbb99f89e30fbbff76 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sat, 12 Sep 2015 17:45:25 +0300 Subject: Marked keystrokes with the :kbd: role. Fixed the case of the "Ctrl-" prefixes. --- Lib/test/test_os.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/test/test_os.py') diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 0bbf73dca4..54dd9da2a4 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -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) -- cgit v1.2.1