blob: 8a5b24718fa1b35a06ae5ee6ebb4646852a545c6 [file] [log] [blame]
Georg Brandl3c8ce772007-11-01 20:58:08 +00001.. highlightlang:: none
2
Christian Heimesd8654cf2007-12-02 15:22:16 +00003.. _using-on-general:
4
Georg Brandl3c8ce772007-11-01 20:58:08 +00005Command line and environment
6============================
7
8The CPython interpreter scans the command line and the environment for various
9settings.
10
Georg Brandl628e6f92009-10-27 20:24:45 +000011.. impl-detail::
Georg Brandl48310cd2009-01-03 21:18:54 +000012
Christian Heimescbf3b5c2007-12-03 21:02:03 +000013 Other implementations' command line schemes may differ. See
Georg Brandl3c8ce772007-11-01 20:58:08 +000014 :ref:`implementations` for further resources.
15
16
Christian Heimesd8654cf2007-12-02 15:22:16 +000017.. _using-on-cmdline:
18
Georg Brandl3c8ce772007-11-01 20:58:08 +000019Command line
20------------
21
22When invoking Python, you may specify any of these options::
23
Georg Brandl2daf6ae2012-02-20 19:54:16 +010024 python [-bBdEhiORsSuvVWx?] [-c command | -m module-name | script | - ] [args]
Georg Brandl3c8ce772007-11-01 20:58:08 +000025
26The most common use case is, of course, a simple invocation of a script::
27
28 python myscript.py
29
30
Christian Heimes81ee3ef2008-05-04 22:42:01 +000031.. _using-on-interface-options:
32
Georg Brandl3c8ce772007-11-01 20:58:08 +000033Interface options
34~~~~~~~~~~~~~~~~~
35
Christian Heimes81ee3ef2008-05-04 22:42:01 +000036The interpreter interface resembles that of the UNIX shell, but provides some
37additional methods of invocation:
Georg Brandl3c8ce772007-11-01 20:58:08 +000038
39* When called with standard input connected to a tty device, it prompts for
40 commands and executes them until an EOF (an end-of-file character, you can
41 produce that with *Ctrl-D* on UNIX or *Ctrl-Z, Enter* on Windows) is read.
42* When called with a file name argument or with a file as standard input, it
43 reads and executes a script from that file.
Christian Heimes81ee3ef2008-05-04 22:42:01 +000044* When called with a directory name argument, it reads and executes an
45 appropriately named script from that directory.
Georg Brandl3c8ce772007-11-01 20:58:08 +000046* When called with ``-c command``, it executes the Python statement(s) given as
47 *command*. Here *command* may contain multiple statements separated by
48 newlines. Leading whitespace is significant in Python statements!
Christian Heimes81ee3ef2008-05-04 22:42:01 +000049* When called with ``-m module-name``, the given module is located on the
Georg Brandl3c8ce772007-11-01 20:58:08 +000050 Python module path and executed as a script.
51
52In non-interactive mode, the entire input is parsed before it is executed.
53
54An interface option terminates the list of options consumed by the interpreter,
55all consecutive arguments will end up in :data:`sys.argv` -- note that the first
56element, subscript zero (``sys.argv[0]``), is a string reflecting the program's
57source.
58
59.. cmdoption:: -c <command>
60
Georg Brandlc7b69082010-10-06 08:08:40 +000061 Execute the Python code in *command*. *command* can be one or more
Georg Brandl3c8ce772007-11-01 20:58:08 +000062 statements separated by newlines, with significant leading whitespace as in
63 normal module code.
Georg Brandl48310cd2009-01-03 21:18:54 +000064
Georg Brandl3c8ce772007-11-01 20:58:08 +000065 If this option is given, the first element of :data:`sys.argv` will be
Christian Heimes81ee3ef2008-05-04 22:42:01 +000066 ``"-c"`` and the current directory will be added to the start of
67 :data:`sys.path` (allowing modules in that directory to be imported as top
68 level modules).
Georg Brandl3c8ce772007-11-01 20:58:08 +000069
70
71.. cmdoption:: -m <module-name>
72
Christian Heimes81ee3ef2008-05-04 22:42:01 +000073 Search :data:`sys.path` for the named module and execute its contents as
74 the :mod:`__main__` module.
Georg Brandl48310cd2009-01-03 21:18:54 +000075
Georg Brandl3c8ce772007-11-01 20:58:08 +000076 Since the argument is a *module* name, you must not give a file extension
Christian Heimes81ee3ef2008-05-04 22:42:01 +000077 (``.py``). The ``module-name`` should be a valid Python module name, but
78 the implementation may not always enforce this (e.g. it may allow you to
79 use a name that includes a hyphen).
Georg Brandl3c8ce772007-11-01 20:58:08 +000080
Nick Coghlan3f48ae32009-02-08 01:58:26 +000081 Package names are also permitted. When a package name is supplied instead
82 of a normal module, the interpreter will execute ``<pkg>.__main__`` as
83 the main module. This behaviour is deliberately similar to the handling
84 of directories and zipfiles that are passed to the interpreter as the
85 script argument.
86
Georg Brandl3c8ce772007-11-01 20:58:08 +000087 .. note::
88
Georg Brandlc5605df2009-08-13 08:26:44 +000089 This option cannot be used with built-in modules and extension modules
Christian Heimes81ee3ef2008-05-04 22:42:01 +000090 written in C, since they do not have Python module files. However, it
91 can still be used for precompiled modules, even if the original source
92 file is not available.
Georg Brandl48310cd2009-01-03 21:18:54 +000093
Georg Brandl3c8ce772007-11-01 20:58:08 +000094 If this option is given, the first element of :data:`sys.argv` will be the
Christian Heimes81ee3ef2008-05-04 22:42:01 +000095 full path to the module file. As with the :option:`-c` option, the current
96 directory will be added to the start of :data:`sys.path`.
Georg Brandl48310cd2009-01-03 21:18:54 +000097
Georg Brandl3c8ce772007-11-01 20:58:08 +000098 Many standard library modules contain code that is invoked on their execution
99 as a script. An example is the :mod:`timeit` module::
100
101 python -mtimeit -s 'setup here' 'benchmarked code here'
102 python -mtimeit -h # for details
103
Georg Brandl48310cd2009-01-03 21:18:54 +0000104 .. seealso::
Georg Brandl3c8ce772007-11-01 20:58:08 +0000105 :func:`runpy.run_module`
Nick Coghlan3f48ae32009-02-08 01:58:26 +0000106 Equivalent functionality directly available to Python code
Georg Brandl3c8ce772007-11-01 20:58:08 +0000107
108 :pep:`338` -- Executing modules as scripts
109
110
Nick Coghlan3f48ae32009-02-08 01:58:26 +0000111 .. versionchanged:: 3.1
112 Supply the package name to run a ``__main__`` submodule.
113
Georg Brandl3c8ce772007-11-01 20:58:08 +0000114.. describe:: -
115
116 Read commands from standard input (:data:`sys.stdin`). If standard input is
117 a terminal, :option:`-i` is implied.
118
119 If this option is given, the first element of :data:`sys.argv` will be
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000120 ``"-"`` and the current directory will be added to the start of
121 :data:`sys.path`.
122
123
124.. describe:: <script>
125
126 Execute the Python code contained in *script*, which must be a filesystem
127 path (absolute or relative) referring to either a Python file, a directory
128 containing a ``__main__.py`` file, or a zipfile containing a
129 ``__main__.py`` file.
130
131 If this option is given, the first element of :data:`sys.argv` will be the
132 script name as given on the command line.
133
134 If the script name refers directly to a Python file, the directory
135 containing that file is added to the start of :data:`sys.path`, and the
136 file is executed as the :mod:`__main__` module.
137
138 If the script name refers to a directory or zipfile, the script name is
139 added to the start of :data:`sys.path` and the ``__main__.py`` file in
140 that location is executed as the :mod:`__main__` module.
141
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000142
143If no interface option is given, :option:`-i` is implied, ``sys.argv[0]`` is
144an empty string (``""``) and the current directory will be added to the
145start of :data:`sys.path`.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000146
Georg Brandla971c652008-11-07 09:39:56 +0000147.. seealso:: :ref:`tut-invoking`
148
Georg Brandl3c8ce772007-11-01 20:58:08 +0000149
Georg Brandl3c8ce772007-11-01 20:58:08 +0000150Generic options
151~~~~~~~~~~~~~~~
152
153.. cmdoption:: -?
154 -h
155 --help
156
157 Print a short description of all command line options.
158
159
160.. cmdoption:: -V
161 --version
162
163 Print the Python version number and exit. Example output could be::
Georg Brandl48310cd2009-01-03 21:18:54 +0000164
Georg Brandle6bcc912008-05-12 18:05:20 +0000165 Python 3.0
Georg Brandl3c8ce772007-11-01 20:58:08 +0000166
167
168Miscellaneous options
169~~~~~~~~~~~~~~~~~~~~~
170
Christian Heimes226679a2007-12-07 11:52:55 +0000171.. cmdoption:: -b
172
173 Issue a warning when comparing str and bytes. Issue an error when the
174 option is given twice (:option:`-bb`).
175
176
Christian Heimes790c8232008-01-07 21:14:23 +0000177.. cmdoption:: -B
178
179 If given, Python won't try to write ``.pyc`` or ``.pyo`` files on the
180 import of source modules. See also :envvar:`PYTHONDONTWRITEBYTECODE`.
181
Christian Heimes790c8232008-01-07 21:14:23 +0000182
Georg Brandl3c8ce772007-11-01 20:58:08 +0000183.. cmdoption:: -d
184
185 Turn on parser debugging output (for wizards only, depending on compilation
186 options). See also :envvar:`PYTHONDEBUG`.
187
188
189.. cmdoption:: -E
190
191 Ignore all :envvar:`PYTHON*` environment variables, e.g.
192 :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set.
193
194
195.. cmdoption:: -i
196
197 When a script is passed as first argument or the :option:`-c` option is used,
198 enter interactive mode after executing the script or the command, even when
199 :data:`sys.stdin` does not appear to be a terminal. The
200 :envvar:`PYTHONSTARTUP` file is not read.
Georg Brandl48310cd2009-01-03 21:18:54 +0000201
Georg Brandl3c8ce772007-11-01 20:58:08 +0000202 This can be useful to inspect global variables or a stack trace when a script
203 raises an exception. See also :envvar:`PYTHONINSPECT`.
204
205
206.. cmdoption:: -O
207
208 Turn on basic optimizations. This changes the filename extension for
209 compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also
210 :envvar:`PYTHONOPTIMIZE`.
211
212
213.. cmdoption:: -OO
214
215 Discard docstrings in addition to the :option:`-O` optimizations.
216
217
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100218.. cmdoption:: -R
219
220 Turn on hash randomization, so that the :meth:`__hash__` values of str, bytes
221 and datetime objects are "salted" with an unpredictable random value.
222 Although they remain constant within an individual Python process, they are
223 not predictable between repeated invocations of Python.
224
225 This is intended to provide protection against a denial-of-service caused by
226 carefully-chosen inputs that exploit the worst case performance of a dict
Georg Brandlc9a42072012-02-21 22:36:27 +0100227 construction, O(n^2) complexity. See
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100228 http://www.ocert.org/advisories/ocert-2011-003.html for details.
229
230 Changing hash values affects the order in which keys are retrieved from a
231 dict. Although Python has never made guarantees about this ordering (and it
232 typically varies between 32-bit and 64-bit builds), enough real-world code
233 implicitly relies on this non-guaranteed behavior that the randomization is
234 disabled by default.
235
236 See also :envvar:`PYTHONHASHSEED`.
237
238 .. versionadded:: 3.1.5
239
240
Christian Heimes8dc226f2008-05-06 23:45:46 +0000241.. cmdoption:: -s
242
243 Don't add user site directory to sys.path
244
Christian Heimes8dc226f2008-05-06 23:45:46 +0000245 .. seealso::
246
247 :pep:`370` -- Per user site-packages directory
248
249
250.. cmdoption:: -S
251
Georg Brandl3c8ce772007-11-01 20:58:08 +0000252 Disable the import of the module :mod:`site` and the site-dependent
253 manipulations of :data:`sys.path` that it entails.
254
255
Georg Brandl3c8ce772007-11-01 20:58:08 +0000256.. cmdoption:: -u
Georg Brandl48310cd2009-01-03 21:18:54 +0000257
Georg Brandl16215c72010-10-06 07:59:52 +0000258 Force the binary layer of the stdin, stdout and stderr streams (which is
259 available as their ``buffer`` attribute) to be unbuffered. The text I/O
260 layer will still be line-buffered.
Georg Brandl48310cd2009-01-03 21:18:54 +0000261
Georg Brandl3c8ce772007-11-01 20:58:08 +0000262 See also :envvar:`PYTHONUNBUFFERED`.
263
264
Georg Brandl3c8ce772007-11-01 20:58:08 +0000265.. cmdoption:: -v
Georg Brandl48310cd2009-01-03 21:18:54 +0000266
Georg Brandl3c8ce772007-11-01 20:58:08 +0000267 Print a message each time a module is initialized, showing the place
268 (filename or built-in module) from which it is loaded. When given twice
269 (:option:`-vv`), print a message for each file that is checked for when
270 searching for a module. Also provides information on module cleanup at exit.
271 See also :envvar:`PYTHONVERBOSE`.
272
273
274.. cmdoption:: -W arg
Georg Brandl48310cd2009-01-03 21:18:54 +0000275
Georg Brandl3c8ce772007-11-01 20:58:08 +0000276 Warning control. Python's warning machinery by default prints warning
277 messages to :data:`sys.stderr`. A typical warning message has the following
278 form::
279
280 file:line: category: message
Georg Brandl48310cd2009-01-03 21:18:54 +0000281
Georg Brandl3c8ce772007-11-01 20:58:08 +0000282 By default, each warning is printed once for each source line where it
283 occurs. This option controls how often warnings are printed.
284
285 Multiple :option:`-W` options may be given; when a warning matches more than
286 one option, the action for the last matching option is performed. Invalid
287 :option:`-W` options are ignored (though, a warning message is printed about
288 invalid options when the first warning is issued).
Georg Brandl48310cd2009-01-03 21:18:54 +0000289
Georg Brandl3c8ce772007-11-01 20:58:08 +0000290 Warnings can also be controlled from within a Python program using the
291 :mod:`warnings` module.
292
293 The simplest form of argument is one of the following action strings (or a
294 unique abbreviation):
Georg Brandl48310cd2009-01-03 21:18:54 +0000295
Georg Brandl3c8ce772007-11-01 20:58:08 +0000296 ``ignore``
297 Ignore all warnings.
298 ``default``
299 Explicitly request the default behavior (printing each warning once per
300 source line).
301 ``all``
302 Print a warning each time it occurs (this may generate many messages if a
303 warning is triggered repeatedly for the same source line, such as inside a
304 loop).
305 ``module``
Georg Brandleeb575f2009-06-24 06:42:05 +0000306 Print each warning only the first time it occurs in each module.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000307 ``once``
308 Print each warning only the first time it occurs in the program.
309 ``error``
310 Raise an exception instead of printing a warning message.
Georg Brandl48310cd2009-01-03 21:18:54 +0000311
312 The full form of argument is::
313
Georg Brandl3c8ce772007-11-01 20:58:08 +0000314 action:message:category:module:line
315
316 Here, *action* is as explained above but only applies to messages that match
317 the remaining fields. Empty fields match all values; trailing empty fields
318 may be omitted. The *message* field matches the start of the warning message
319 printed; this match is case-insensitive. The *category* field matches the
320 warning category. This must be a class name; the match test whether the
321 actual warning category of the message is a subclass of the specified warning
322 category. The full class name must be given. The *module* field matches the
323 (fully-qualified) module name; this match is case-sensitive. The *line*
324 field matches the line number, where zero matches all line numbers and is
325 thus equivalent to an omitted line number.
326
327 .. seealso::
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000328 :mod:`warnings` -- the warnings module
Georg Brandl3c8ce772007-11-01 20:58:08 +0000329
330 :pep:`230` -- Warning framework
331
332
333.. cmdoption:: -x
Georg Brandl48310cd2009-01-03 21:18:54 +0000334
Georg Brandl3c8ce772007-11-01 20:58:08 +0000335 Skip the first line of the source, allowing use of non-Unix forms of
336 ``#!cmd``. This is intended for a DOS specific hack only.
Georg Brandl48310cd2009-01-03 21:18:54 +0000337
Georg Brandl3221dc92009-04-27 16:23:47 +0000338 .. note:: The line numbers in error messages will be off by one.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000339
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100340
Barry Warsawa1bd4452010-02-05 19:21:12 +0000341Options you shouldn't use
342~~~~~~~~~~~~~~~~~~~~~~~~~
343
344.. cmdoption:: -J
345
346 Reserved for use by Jython_.
347
348.. _Jython: http://jython.org
349
350.. cmdoption:: -X
351
352 Reserved for alternative implementations of Python to use for their own
353 purposes.
354
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100355
Christian Heimesd8654cf2007-12-02 15:22:16 +0000356.. _using-on-envvars:
Georg Brandl3c8ce772007-11-01 20:58:08 +0000357
358Environment variables
359---------------------
360
Christian Heimes790c8232008-01-07 21:14:23 +0000361These environment variables influence Python's behavior.
362
Georg Brandl3c8ce772007-11-01 20:58:08 +0000363.. envvar:: PYTHONHOME
Georg Brandl48310cd2009-01-03 21:18:54 +0000364
Georg Brandl3c8ce772007-11-01 20:58:08 +0000365 Change the location of the standard Python libraries. By default, the
Christian Heimese1c98112008-01-21 11:20:28 +0000366 libraries are searched in :file:`{prefix}/lib/python{version}` and
367 :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and
Georg Brandl3c8ce772007-11-01 20:58:08 +0000368 :file:`{exec_prefix}` are installation-dependent directories, both defaulting
369 to :file:`/usr/local`.
Georg Brandl48310cd2009-01-03 21:18:54 +0000370
Georg Brandl3c8ce772007-11-01 20:58:08 +0000371 When :envvar:`PYTHONHOME` is set to a single directory, its value replaces
372 both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values
Christian Heimese1c98112008-01-21 11:20:28 +0000373 for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000374
375
376.. envvar:: PYTHONPATH
377
Christian Heimes790c8232008-01-07 21:14:23 +0000378 Augment the default search path for module files. The format is the same as
Georg Brandl3c8ce772007-11-01 20:58:08 +0000379 the shell's :envvar:`PATH`: one or more directory pathnames separated by
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000380 :data:`os.pathsep` (e.g. colons on Unix or semicolons on Windows).
381 Non-existent directories are silently ignored.
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000382
383 In addition to normal directories, individual :envvar:`PYTHONPATH` entries
384 may refer to zipfiles containing pure Python modules (in either source or
385 compiled form). Extension modules cannot be imported from zipfiles.
Georg Brandl48310cd2009-01-03 21:18:54 +0000386
Georg Brandl3c8ce772007-11-01 20:58:08 +0000387 The default search path is installation dependent, but generally begins with
Georg Brandl1f01deb2009-01-03 22:47:39 +0000388 :file:`{prefix}/lib/python{version}` (see :envvar:`PYTHONHOME` above). It
Georg Brandl3c8ce772007-11-01 20:58:08 +0000389 is *always* appended to :envvar:`PYTHONPATH`.
Georg Brandl48310cd2009-01-03 21:18:54 +0000390
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000391 An additional directory will be inserted in the search path in front of
392 :envvar:`PYTHONPATH` as described above under
393 :ref:`using-on-interface-options`. The search path can be manipulated from
394 within a Python program as the variable :data:`sys.path`.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000395
396
397.. envvar:: PYTHONSTARTUP
Georg Brandl48310cd2009-01-03 21:18:54 +0000398
Georg Brandl3c8ce772007-11-01 20:58:08 +0000399 If this is the name of a readable file, the Python commands in that file are
400 executed before the first prompt is displayed in interactive mode. The file
401 is executed in the same namespace where interactive commands are executed so
402 that objects defined or imported in it can be used without qualification in
403 the interactive session. You can also change the prompts :data:`sys.ps1` and
404 :data:`sys.ps2` in this file.
405
406
407.. envvar:: PYTHONY2K
Georg Brandl48310cd2009-01-03 21:18:54 +0000408
Georg Brandl3c8ce772007-11-01 20:58:08 +0000409 Set this to a non-empty string to cause the :mod:`time` module to require
410 dates specified as strings to include 4-digit years, otherwise 2-digit years
411 are converted based on rules described in the :mod:`time` module
412 documentation.
413
414
415.. envvar:: PYTHONOPTIMIZE
Georg Brandl48310cd2009-01-03 21:18:54 +0000416
Georg Brandl3c8ce772007-11-01 20:58:08 +0000417 If this is set to a non-empty string it is equivalent to specifying the
418 :option:`-O` option. If set to an integer, it is equivalent to specifying
419 :option:`-O` multiple times.
420
421
422.. envvar:: PYTHONDEBUG
Georg Brandl48310cd2009-01-03 21:18:54 +0000423
Georg Brandl3c8ce772007-11-01 20:58:08 +0000424 If this is set to a non-empty string it is equivalent to specifying the
425 :option:`-d` option. If set to an integer, it is equivalent to specifying
426 :option:`-d` multiple times.
427
428
429.. envvar:: PYTHONINSPECT
Georg Brandl48310cd2009-01-03 21:18:54 +0000430
Georg Brandl3c8ce772007-11-01 20:58:08 +0000431 If this is set to a non-empty string it is equivalent to specifying the
432 :option:`-i` option.
433
Christian Heimes790c8232008-01-07 21:14:23 +0000434 This variable can also be modified by Python code using :data:`os.environ`
435 to force inspect mode on program termination.
436
Georg Brandl3c8ce772007-11-01 20:58:08 +0000437
438.. envvar:: PYTHONUNBUFFERED
Georg Brandl48310cd2009-01-03 21:18:54 +0000439
Georg Brandl3c8ce772007-11-01 20:58:08 +0000440 If this is set to a non-empty string it is equivalent to specifying the
441 :option:`-u` option.
442
443
444.. envvar:: PYTHONVERBOSE
Georg Brandl48310cd2009-01-03 21:18:54 +0000445
Georg Brandl3c8ce772007-11-01 20:58:08 +0000446 If this is set to a non-empty string it is equivalent to specifying the
447 :option:`-v` option. If set to an integer, it is equivalent to specifying
448 :option:`-v` multiple times.
449
450
451.. envvar:: PYTHONCASEOK
Georg Brandl48310cd2009-01-03 21:18:54 +0000452
Georg Brandl3c8ce772007-11-01 20:58:08 +0000453 If this is set, Python ignores case in :keyword:`import` statements. This
454 only works on Windows.
455
Christian Heimes790c8232008-01-07 21:14:23 +0000456
457.. envvar:: PYTHONDONTWRITEBYTECODE
458
459 If this is set, Python won't try to write ``.pyc`` or ``.pyo`` files on the
460 import of source modules.
461
Christian Heimes790c8232008-01-07 21:14:23 +0000462
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100463.. envvar:: PYTHONHASHSEED
464
465 If this variable is set to ``random``, the effect is the same as specifying
466 the :option:`-R` option: a random value is used to seed the hashes of str,
467 bytes and datetime objects.
468
469 If :envvar:`PYTHONHASHSEED` is set to an integer value, it is used as a fixed
470 seed for generating the hash() of the types covered by the hash
471 randomization.
472
473 Its purpose is to allow repeatable hashing, such as for selftests for the
474 interpreter itself, or to allow a cluster of python processes to share hash
475 values.
476
477 The integer must be a decimal number in the range [0,4294967295]. Specifying
478 the value 0 will lead to the same hash values as when hash randomization is
479 disabled.
480
481 .. versionadded:: 3.1.5
482
483
Georg Brandl2c906f12008-06-11 18:03:09 +0000484.. envvar:: PYTHONIOENCODING
485
486 Overrides the encoding used for stdin/stdout/stderr, in the syntax
487 ``encodingname:errorhandler``. The ``:errorhandler`` part is optional and
488 has the same meaning as in :func:`str.encode`.
489
Georg Brandl559e5d72008-06-11 18:37:52 +0000490 For stderr, the ``:errorhandler`` part is ignored; the handler will always be
491 ``'backslashreplace'``.
492
Georg Brandl2c906f12008-06-11 18:03:09 +0000493
Christian Heimes8dc226f2008-05-06 23:45:46 +0000494.. envvar:: PYTHONNOUSERSITE
495
496 If this is set, Python won't add the user site directory to sys.path
497
498 .. seealso::
499
500 :pep:`370` -- Per user site-packages directory
501
502
503.. envvar:: PYTHONUSERBASE
504
505 Sets the base directory for the user site directory
506
507 .. seealso::
508
509 :pep:`370` -- Per user site-packages directory
510
511
Christian Heimes790c8232008-01-07 21:14:23 +0000512.. envvar:: PYTHONEXECUTABLE
513
514 If this environment variable is set, ``sys.argv[0]`` will be set to its
515 value instead of the value got through the C runtime. Only works on
Georg Brandlc575c902008-09-13 17:46:05 +0000516 Mac OS X.
Christian Heimes790c8232008-01-07 21:14:23 +0000517
518
519Debug-mode variables
520~~~~~~~~~~~~~~~~~~~~
521
522Setting these variables only has an effect in a debug build of Python, that is,
523if Python was configured with the :option:`--with-pydebug` build option.
524
525.. envvar:: PYTHONTHREADDEBUG
526
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000527 If set, Python will print threading debug info.
Christian Heimes790c8232008-01-07 21:14:23 +0000528
Christian Heimes790c8232008-01-07 21:14:23 +0000529
530.. envvar:: PYTHONDUMPREFS
531
532 If set, Python will dump objects and reference counts still alive after
533 shutting down the interpreter.
534
535
536.. envvar:: PYTHONMALLOCSTATS
537
538 If set, Python will print memory allocation statistics every time a new
539 object arena is created, and on shutdown.
540