@@ -162,7 +162,7 @@ compilation options).
162162Ignore environment variables like PYTHONPATH and PYTHONHOME that modify
163163the behavior of the interpreter.
164164.TP
165- .B \- h ", " \- ? ", "\-\- help
165+ .BR \- h " , " \- ? " , " \-\- help
166166Prints the usage for the interpreter executable and exits.
167167.TP
168168.B "\-\- help\- env"
@@ -171,7 +171,6 @@ Prints help about Python-specific environment variables and exits.
171171.B "\-\- help\- xoptions"
172172Prints help about implementation-specific \fB \- X \fP options and exits.
173173.TP
174- .TP
175174.B "\-\- help\- all"
176175Prints complete usage information and exits.
177176.TP
@@ -243,7 +242,7 @@ twice, print a message for each file that is checked for when
243242searching for a module. Also provides information on module cleanup
244243at exit.
245244.TP
246- .B \- V ", " \-\- version
245+ .BR \- V " , " \-\- version
247246Prints the Python version number of the executable and exits. When given
248247twice, print more information about the build.
249248
256255The simplest settings apply a particular action unconditionally to all warnings
257256emitted by a process (even those that are otherwise ignored by default):
258257
259- -Wdefault # Warn once per call location
260- -Werror # Convert to exceptions
261- -Walways # Warn every time
262- -Wall # Same as -Walways
263- -Wmodule # Warn once per calling module
264- -Wonce # Warn once per Python process
265- -Wignore # Never warn
258+ .nf
259+ \- Wdefault # Warn once per call location
260+ \- Werror # Convert to exceptions
261+ \- Walways # Warn every time
262+ \- Wall # Same as \- Walways
263+ \- Wmodule # Warn once per calling module
264+ \- Wonce # Warn once per Python process
265+ \- Wignore # Never warn
266+ .fi
266267
267268The action names can be abbreviated as desired and the interpreter will resolve
268269them to the appropriate action name. For example,
269270.B \- Wi
270271is the same as
271- .B \- Wignore .
272+ .BR \- Wignore .
272273
273274The full form of argument is:
274- .IB action: message: category: module: lineno
275+ .IB action : message : category : module : lineno
275276
276277Empty fields match all values; trailing empty fields may be omitted. For
277278example
@@ -457,7 +458,7 @@ is an empty string; if
457458is used,
458459.I sys.argv[0]
459460contains the string
460- .I ' \- c'.
461+ .RI ' \- c " ' . "
461462Note that options interpreted by the Python interpreter itself
462463are not placed in
463464.IR sys.argv .
@@ -584,8 +585,8 @@ purpose is to allow repeatable hashing, such as for selftests for the
584585interpreter itself, or to allow a cluster of python processes to share hash
585586values.
586587
587- The integer must be a decimal number in the range [0,4294967295]. Specifying
588- the value 0 will disable hash randomization.
588+ The integer must be a decimal number in the range [0,4 \| 294 \| 967 \| 295].
589+ Specifying the value 0 will disable hash randomization.
589590.IP PYTHONHOME
590591Change the location of the standard Python libraries. By default, the
591592libraries are searched in ${prefix}/lib/python<version> and
@@ -607,7 +608,7 @@ This is equivalent to the \fB\-X int_max_str_digits=\fINUMBER\fR option.
607608.IP PYTHONIOENCODING
608609If this is set before running the interpreter, it overrides the encoding used
609610for stdin/stdout/stderr, in the syntax
610- .IB encodingname " : " errorhandler
611+ .IB encodingname : errorhandler
611612The
612613.IB errorhandler
613614part is optional and has the same meaning as in str.encode. For stderr, the
0 commit comments