@@ -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
@@ -280,7 +280,7 @@ Miscellaneous options
280
280
281
281
.. option :: -E
282
282
283
- Ignore all :envvar: ` PYTHON* ` environment variables, e.g.
283
+ Ignore all `` PYTHON* ` ` environment variables, e.g.
284
284
:envvar: `PYTHONPATH ` and :envvar: `PYTHONHOME `, that might be set.
285
285
286
286
See also the :option: `-P ` and :option: `-I ` (isolated) options.
@@ -303,7 +303,7 @@ Miscellaneous options
303
303
and :option: `-s ` options.
304
304
305
305
In isolated mode :data: `sys.path ` contains neither the script's directory nor
306
- the user's site-packages directory. All :envvar: ` PYTHON* ` environment
306
+ the user's site-packages directory. All `` PYTHON* ` ` environment
307
307
variables are ignored, too. Further restrictions may be imposed to prevent
308
308
the user from injecting malicious code.
309
309
@@ -362,7 +362,7 @@ Miscellaneous options
362
362
randomization is enabled by default.
363
363
364
364
On previous versions of Python, this option turns on hash randomization,
365
- so that the :meth: `__hash__ ` values of str and bytes objects
365
+ so that the :meth: `~object. __hash__ ` values of str and bytes objects
366
366
are "salted" with an unpredictable random value. Although they remain
367
367
constant within an individual Python process, they are not predictable
368
368
between repeated invocations of Python.
@@ -860,9 +860,10 @@ conflict.
860
860
861
861
If this environment variable is set to a non-empty string,
862
862
:func: `faulthandler.enable ` is called at startup: install a handler for
863
- :const: `SIGSEGV `, :const: `SIGFPE `, :const: `SIGABRT `, :const: `SIGBUS ` and
864
- :const: `SIGILL ` signals to dump the Python traceback. This is equivalent to
865
- :option: `-X ` ``faulthandler `` option.
863
+ :const: `~signal.SIGSEGV `, :const: `~signal.SIGFPE `,
864
+ :const: `~signal.SIGABRT `, :const: `~signal.SIGBUS ` and
865
+ :const: `~signal.SIGILL ` signals to dump the Python traceback.
866
+ This is equivalent to :option: `-X ` ``faulthandler `` option.
866
867
867
868
.. versionadded :: 3.3
868
869
0 commit comments