@@ -257,9 +257,9 @@ executes a
257257from that file;
258258when called with
259259.B \- c
260- .I command,
260+ .IR command ,
261261it executes the Python statement(s) given as
262- .I command.
262+ .IR command .
263263Here
264264.I command
265265may contain multiple statements separated by newlines.
@@ -269,7 +269,7 @@ executed.
269269.PP
270270If available, the script name and additional arguments thereafter are
271271passed to the script in the Python variable
272- .I sys.argv ,
272+ .IR sys.argv ,
273273which is a list of strings (you must first
274274.I import sys
275275to be able to access it).
@@ -283,14 +283,14 @@ contains the string
283283.I '-c'.
284284Note that options interpreted by the Python interpreter itself
285285are not placed in
286- .I sys.argv.
286+ .IR sys.argv .
287287.PP
288288In interactive mode, the primary prompt is `>>>'; the second prompt
289289(which appears when a command is not complete) is `...'.
290290The prompts can be changed by assignment to
291291.I sys.ps1
292292or
293- .I sys.ps2.
293+ .IR sys.ps2 .
294294The interpreter quits when it reads an EOF at a prompt.
295295When an unhandled exception occurs, a stack trace is printed and
296296control returns to the primary prompt; in non-interactive mode, the
@@ -346,7 +346,7 @@ If a script argument is given, the directory containing the script is
346346inserted in the path in front of $PYTHONPATH.
347347The search path can be manipulated from within a Python program as the
348348variable
349- .I sys.path .
349+ .IR sys.path .
350350.IP PYTHONSTARTUP
351351If this is the name of a readable file, the Python commands in that
352352file are executed before the first prompt is displayed in interactive
0 commit comments