@@ -103,7 +103,7 @@ source.
103
103
104
104
:option: `-I ` option can be used to run the script in isolated mode where
105
105
:data: `sys.path ` contains neither the current directory nor the user's
106
- site-packages directory. All :envvar: ` PYTHON* ` environment variables are
106
+ site-packages directory. All `` PYTHON* ` ` environment variables are
107
107
ignored, too.
108
108
109
109
Many standard library modules contain code that is invoked on their execution
@@ -161,7 +161,7 @@ source.
161
161
162
162
:option: `-I ` option can be used to run the script in isolated mode where
163
163
:data: `sys.path ` contains neither the script's directory nor the user's
164
- site-packages directory. All :envvar: ` PYTHON* ` environment variables are
164
+ site-packages directory. All `` PYTHON* ` ` environment variables are
165
165
ignored, too.
166
166
167
167
.. audit-event :: cpython.run_file filename
@@ -277,7 +277,7 @@ Miscellaneous options
277
277
278
278
.. option :: -E
279
279
280
- Ignore all :envvar: ` PYTHON* ` environment variables, e.g.
280
+ Ignore all `` PYTHON* ` ` environment variables, e.g.
281
281
:envvar: `PYTHONPATH ` and :envvar: `PYTHONHOME `, that might be set.
282
282
283
283
See also the :option: `-P ` and :option: `-I ` (isolated) options.
@@ -300,7 +300,7 @@ Miscellaneous options
300
300
and :option: `-s ` options.
301
301
302
302
In isolated mode :data: `sys.path ` contains neither the script's directory nor
303
- the user's site-packages directory. All :envvar: ` PYTHON* ` environment
303
+ the user's site-packages directory. All `` PYTHON* ` ` environment
304
304
variables are ignored, too. Further restrictions may be imposed to prevent
305
305
the user from injecting malicious code.
306
306
@@ -359,7 +359,7 @@ Miscellaneous options
359
359
randomization is enabled by default.
360
360
361
361
On previous versions of Python, this option turns on hash randomization,
362
- so that the :meth: `__hash__ ` values of str and bytes objects
362
+ so that the :meth: `~object. __hash__ ` values of str and bytes objects
363
363
are "salted" with an unpredictable random value. Although they remain
364
364
constant within an individual Python process, they are not predictable
365
365
between repeated invocations of Python.
@@ -837,9 +837,10 @@ conflict.
837
837
838
838
If this environment variable is set to a non-empty string,
839
839
:func: `faulthandler.enable ` is called at startup: install a handler for
840
- :const: `SIGSEGV `, :const: `SIGFPE `, :const: `SIGABRT `, :const: `SIGBUS ` and
841
- :const: `SIGILL ` signals to dump the Python traceback. This is equivalent to
842
- :option: `-X ` ``faulthandler `` option.
840
+ :const: `~signal.SIGSEGV `, :const: `~signal.SIGFPE `,
841
+ :const: `~signal.SIGABRT `, :const: `~signal.SIGBUS ` and
842
+ :const: `~signal.SIGILL ` signals to dump the Python traceback.
843
+ This is equivalent to :option: `-X ` ``faulthandler `` option.
843
844
844
845
.. versionadded :: 3.3
845
846
0 commit comments