@@ -81,14 +81,14 @@ by entering a few expressions of your choice and seeing the results::
8181 'HelloHelloHello'
8282
8383Many people use the interactive mode as a convenient yet highly programmable
84- calculator. When you want to end your interactive Python session, hold the Ctrl
85- key down while you enter a Z , then hit the "Enter" key to get back to your
84+ calculator. When you want to end your interactive Python session, hold the :kbd: ` Ctrl `
85+ key down while you enter a :kbd: ` Z ` , then hit the ":kbd: ` Enter ` " key to get back to your
8686Windows command prompt.
8787
8888You may also find that you have a Start-menu entry such as :menuselection: `Start
8989--> Programs --> Python 3.3 --> Python (command line) ` that results in you
9090seeing the ``>>> `` prompt in a new window. If so, the window will disappear
91- after you enter the Ctrl-Z character; Windows is running a single "python"
91+ after you enter the :kbd: ` Ctrl - Z ` character; Windows is running a single "python"
9292command in the window, and closes it when you terminate the interpreter.
9393
9494If the ``python `` command, instead of displaying the interpreter prompt ``>>> ``,
@@ -131,8 +131,8 @@ you should make sure that entering the command ::
131131
132132 c:\Python33\python
133133
134- starts up the interpreter as above (and don't forget you'll need a "CTRL-Z " and
135- an "Enter" to get out of it). Once you have verified the directory, you can
134+ starts up the interpreter as above (and don't forget you'll need a ":kbd: ` Ctrl - Z ` " and
135+ an ":kbd: ` Enter ` " to get out of it). Once you have verified the directory, you can
136136add it to the system path to make it easier to start Python by just running
137137the ``python `` command. This is currently an option in the installer as of
138138CPython 3.3.
@@ -327,7 +327,7 @@ Prior to Python 2.7 and 3.2, to terminate a process, you can use :mod:`ctypes`::
327327 return (0 != kernel32.TerminateProcess(handle, 0))
328328
329329In 2.7 and 3.2, :func: `os.kill ` is implemented similar to the above function,
330- with the additional feature of being able to send CTRL+C and CTRL+BREAK
330+ with the additional feature of being able to send :kbd: ` Ctrl + C ` and :kbd: ` Ctrl + Break `
331331to console subprocesses which are designed to handle those signals. See
332332:func: `os.kill ` for further details.
333333
0 commit comments