summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/2.7.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-12 14:47:12 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-12 14:47:12 (GMT)
commit9b2e37f6882d85c2e7cb9ce24a02e9c60a237b25 (patch)
tree084f20a462d0e8579fbd92aacb238ab62271bb5a /Doc/whatsnew/2.7.rst
parentb2528c92f139195e8a3c745833ad1cd0ff4bc0f2 (diff)
downloadcpython-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 'Doc/whatsnew/2.7.rst')
-rw-r--r--Doc/whatsnew/2.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
index 65eaf17..f4e7589 100644
--- a/Doc/whatsnew/2.7.rst
+++ b/Doc/whatsnew/2.7.rst
@@ -2320,7 +2320,7 @@ Port-Specific Changes: Windows
* The :func:`os.kill` function now works on Windows. The signal value
can be the constants :const:`CTRL_C_EVENT`,
:const:`CTRL_BREAK_EVENT`, or any integer. The first two constants
- will send Control-C and Control-Break keystroke events to
+ will send :kbd:`Control-C` and :kbd:`Control-Break` keystroke events to
subprocesses; any other value will use the :c:func:`TerminateProcess`
API. (Contributed by Miki Tebeka; :issue:`1220212`.)