diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-12 17:45:25 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-12 17:45:25 +0300 |
commit | 0424eaf7533b0f386f6038dbb99f89e30fbbff76 (patch) | |
tree | 8319fe88ab1424714e8346aba8885075ed39b77a /Lib/test/test_os.py | |
parent | 06171bd52a02173910d7ab8082850bbed0db1410 (diff) | |
download | cpython-git-0424eaf7533b0f386f6038dbb99f89e30fbbff76.tar.gz |
Marked keystrokes with the :kbd: role.
Fixed the case of the "Ctrl-" prefixes.
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |