summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-12 14:46:20 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-12 14:46:20 (GMT)
commit153627c111d755ad45c4699755fd64d89ac2eb66 (patch)
tree526064c08fe4a5e69227dbca070e319161bc5fab /Lib/test/test_os.py
parent9ab96946eef86d2fc0e54262ee7c44f3d5dc3d39 (diff)
parent0424eaf7533b0f386f6038dbb99f89e30fbbff76 (diff)
downloadcpython-153627c111d755ad45c4699755fd64d89ac2eb66.zip
cpython-153627c111d755ad45c4699755fd64d89ac2eb66.tar.gz
cpython-153627c111d755ad45c4699755fd64d89ac2eb66.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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index 0b77835..245309e 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -1786,7 +1786,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
@@ -1799,7 +1799,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)