diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-12 14:47:12 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-12 14:47:12 (GMT) |
commit | 9b2e37f6882d85c2e7cb9ce24a02e9c60a237b25 (patch) | |
tree | 084f20a462d0e8579fbd92aacb238ab62271bb5a /Lib/test/test_os.py | |
parent | b2528c92f139195e8a3c745833ad1cd0ff4bc0f2 (diff) | |
download | cpython-9b2e37f6882d85c2e7cb9ce24a02e9c60a237b25.zip cpython-9b2e37f6882d85c2e7cb9ce24a02e9c60a237b25.tar.gz cpython-9b2e37f6882d85c2e7cb9ce24a02e9c60a237b25.tar.bz2 |
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 6c7ea7a..57c7c88 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -856,7 +856,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 @@ -869,7 +869,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) |