summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-12 14:45:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-12 14:45:25 (GMT)
commit0424eaf7533b0f386f6038dbb99f89e30fbbff76 (patch)
tree8319fe88ab1424714e8346aba8885075ed39b77a /Lib/test
parent06171bd52a02173910d7ab8082850bbed0db1410 (diff)
downloadcpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.zip
cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.tar.gz
cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.tar.bz2
Marked keystrokes with the :kbd: role.
Fixed the case of the "Ctrl-" prefixes.
Diffstat (limited to 'Lib/test')
-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 0bbf73d..54dd9da2 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)