Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d8623e8

Browse files
committed
Do not italicize punctuation in python(1) manual page (Matt Kraai).
1 parent 0182f38 commit d8623e8

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Misc/python.man

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

0 commit comments

Comments
 (0)