blob: 9c1473e87e64c39aaccbd2ee25e48433f28c2cee [file] [log] [blame]
Georg Brandl59d121a2007-10-20 18:08:14 +00001.. highlightlang:: none
2
Georg Brandl87983f22007-12-01 23:12:45 +00003.. _using-on-general:
4
Georg Brandl1cddfed2007-10-20 18:33:20 +00005Command line and environment
6============================
Georg Brandl59d121a2007-10-20 18:08:14 +00007
8The CPython interpreter scans the command line and the environment for various
9settings.
10
Georg Brandl5d2eb342009-10-27 15:08:27 +000011.. impl-detail::
Georg Brandl734373c2009-01-03 21:55:17 +000012
Georg Brandlcbcfe4f2007-12-03 19:57:02 +000013 Other implementations' command line schemes may differ. See
Georg Brandl59d121a2007-10-20 18:08:14 +000014 :ref:`implementations` for further resources.
15
16
Georg Brandl87983f22007-12-01 23:12:45 +000017.. _using-on-cmdline:
18
Georg Brandl59d121a2007-10-20 18:08:14 +000019Command line
20------------
21
22When invoking Python, you may specify any of these options::
23
Barry Warsaw1e13eb02012-02-20 20:42:21 -050024 python [-BdEiOQsRStuUvVWxX3?] [-c command | -m module-name | script | - ] [args]
Georg Brandl59d121a2007-10-20 18:08:14 +000025
26The most common use case is, of course, a simple invocation of a script::
27
28 python myscript.py
29
30
Nick Coghlan31f63152008-04-30 14:23:36 +000031.. _using-on-interface-options:
32
Georg Brandl59d121a2007-10-20 18:08:14 +000033Interface options
34~~~~~~~~~~~~~~~~~
35
Nick Coghlan31f63152008-04-30 14:23:36 +000036The interpreter interface resembles that of the UNIX shell, but provides some
37additional methods of invocation:
Georg Brandl59d121a2007-10-20 18:08:14 +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.
Nick Coghlan31f63152008-04-30 14:23:36 +000044* When called with a directory name argument, it reads and executes an
45 appropriately named script from that directory.
Georg Brandl59d121a2007-10-20 18:08:14 +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!
Nick Coghlan31f63152008-04-30 14:23:36 +000049* When called with ``-m module-name``, the given module is located on the
Georg Brandl59d121a2007-10-20 18:08:14 +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 Brandl39db30c2010-07-09 07:51:43 +000061 Execute the Python code in *command*. *command* can be one or more
Georg Brandl59d121a2007-10-20 18:08:14 +000062 statements separated by newlines, with significant leading whitespace as in
63 normal module code.
Georg Brandl734373c2009-01-03 21:55:17 +000064
Georg Brandl59d121a2007-10-20 18:08:14 +000065 If this option is given, the first element of :data:`sys.argv` will be
Nick Coghlan31f63152008-04-30 14:23:36 +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 Brandl59d121a2007-10-20 18:08:14 +000069
70
71.. cmdoption:: -m <module-name>
72
Nick Coghlan31f63152008-04-30 14:23:36 +000073 Search :data:`sys.path` for the named module and execute its contents as
74 the :mod:`__main__` module.
Georg Brandl734373c2009-01-03 21:55:17 +000075
Georg Brandl59d121a2007-10-20 18:08:14 +000076 Since the argument is a *module* name, you must not give a file extension
Nick Coghlan31f63152008-04-30 14:23:36 +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 Brandl59d121a2007-10-20 18:08:14 +000080
81 .. note::
82
Georg Brandl4ae4f872009-10-27 14:37:48 +000083 This option cannot be used with built-in modules and extension modules
Nick Coghlan31f63152008-04-30 14:23:36 +000084 written in C, since they do not have Python module files. However, it
85 can still be used for precompiled modules, even if the original source
86 file is not available.
Georg Brandl734373c2009-01-03 21:55:17 +000087
Georg Brandl59d121a2007-10-20 18:08:14 +000088 If this option is given, the first element of :data:`sys.argv` will be the
Nick Coghlan31f63152008-04-30 14:23:36 +000089 full path to the module file. As with the :option:`-c` option, the current
90 directory will be added to the start of :data:`sys.path`.
Georg Brandl734373c2009-01-03 21:55:17 +000091
Georg Brandl59d121a2007-10-20 18:08:14 +000092 Many standard library modules contain code that is invoked on their execution
93 as a script. An example is the :mod:`timeit` module::
94
95 python -mtimeit -s 'setup here' 'benchmarked code here'
96 python -mtimeit -h # for details
97
Georg Brandl734373c2009-01-03 21:55:17 +000098 .. seealso::
Georg Brandl59d121a2007-10-20 18:08:14 +000099 :func:`runpy.run_module`
100 The actual implementation of this feature.
101
102 :pep:`338` -- Executing modules as scripts
103
Nick Coghlan31f63152008-04-30 14:23:36 +0000104 .. versionadded:: 2.4
105
Georg Brandl59d121a2007-10-20 18:08:14 +0000106 .. versionchanged:: 2.5
Nick Coghlan31f63152008-04-30 14:23:36 +0000107 The named module can now be located inside a package.
Georg Brandl59d121a2007-10-20 18:08:14 +0000108
109
110.. describe:: -
111
112 Read commands from standard input (:data:`sys.stdin`). If standard input is
113 a terminal, :option:`-i` is implied.
114
115 If this option is given, the first element of :data:`sys.argv` will be
Nick Coghlan31f63152008-04-30 14:23:36 +0000116 ``"-"`` and the current directory will be added to the start of
117 :data:`sys.path`.
118
119
120.. describe:: <script>
121
122 Execute the Python code contained in *script*, which must be a filesystem
123 path (absolute or relative) referring to either a Python file, a directory
124 containing a ``__main__.py`` file, or a zipfile containing a
125 ``__main__.py`` file.
126
127 If this option is given, the first element of :data:`sys.argv` will be the
128 script name as given on the command line.
129
130 If the script name refers directly to a Python file, the directory
131 containing that file is added to the start of :data:`sys.path`, and the
132 file is executed as the :mod:`__main__` module.
133
134 If the script name refers to a directory or zipfile, the script name is
135 added to the start of :data:`sys.path` and the ``__main__.py`` file in
136 that location is executed as the :mod:`__main__` module.
137
138 .. versionchanged:: 2.5
139 Directories and zipfiles containing a ``__main__.py`` file at the top
140 level are now considered valid Python scripts.
141
142If no interface option is given, :option:`-i` is implied, ``sys.argv[0]`` is
143an empty string (``""``) and the current directory will be added to the
144start of :data:`sys.path`.
Georg Brandl59d121a2007-10-20 18:08:14 +0000145
Georg Brandlec068d32008-11-07 08:28:20 +0000146.. seealso:: :ref:`tut-invoking`
Georg Brandl59d121a2007-10-20 18:08:14 +0000147
148
Georg Brandl59d121a2007-10-20 18:08:14 +0000149Generic options
150~~~~~~~~~~~~~~~
151
152.. cmdoption:: -?
153 -h
154 --help
155
156 Print a short description of all command line options.
157
Nick Coghlan31f63152008-04-30 14:23:36 +0000158 .. versionchanged:: 2.5
Georg Brandl59d121a2007-10-20 18:08:14 +0000159 The ``--help`` variant.
160
161
162.. cmdoption:: -V
163 --version
164
165 Print the Python version number and exit. Example output could be::
Georg Brandl734373c2009-01-03 21:55:17 +0000166
Georg Brandl59d121a2007-10-20 18:08:14 +0000167 Python 2.5.1
168
Nick Coghlan31f63152008-04-30 14:23:36 +0000169 .. versionchanged:: 2.5
Georg Brandl59d121a2007-10-20 18:08:14 +0000170 The ``--version`` variant.
171
172
173Miscellaneous options
174~~~~~~~~~~~~~~~~~~~~~
175
Georg Brandl2da0fce2008-01-07 17:09:35 +0000176.. cmdoption:: -B
177
178 If given, Python won't try to write ``.pyc`` or ``.pyo`` files on the
179 import of source modules. See also :envvar:`PYTHONDONTWRITEBYTECODE`.
180
181 .. versionadded:: 2.6
182
183
Georg Brandl59d121a2007-10-20 18:08:14 +0000184.. cmdoption:: -d
185
186 Turn on parser debugging output (for wizards only, depending on compilation
187 options). See also :envvar:`PYTHONDEBUG`.
188
189
190.. cmdoption:: -E
191
Georg Brandlc5004f32007-10-20 19:05:45 +0000192 Ignore all :envvar:`PYTHON*` environment variables, e.g.
Georg Brandl35073332007-10-20 19:08:36 +0000193 :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set.
Georg Brandl59d121a2007-10-20 18:08:14 +0000194
Georg Brandlc5004f32007-10-20 19:05:45 +0000195 .. versionadded:: 2.2
Georg Brandl59d121a2007-10-20 18:08:14 +0000196
197
198.. cmdoption:: -i
199
200 When a script is passed as first argument or the :option:`-c` option is used,
201 enter interactive mode after executing the script or the command, even when
202 :data:`sys.stdin` does not appear to be a terminal. The
203 :envvar:`PYTHONSTARTUP` file is not read.
Georg Brandl734373c2009-01-03 21:55:17 +0000204
Georg Brandl59d121a2007-10-20 18:08:14 +0000205 This can be useful to inspect global variables or a stack trace when a script
206 raises an exception. See also :envvar:`PYTHONINSPECT`.
207
208
209.. cmdoption:: -O
210
211 Turn on basic optimizations. This changes the filename extension for
Georg Brandl5e52db02007-10-21 10:45:46 +0000212 compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also
Georg Brandl59d121a2007-10-20 18:08:14 +0000213 :envvar:`PYTHONOPTIMIZE`.
214
215
216.. cmdoption:: -OO
217
218 Discard docstrings in addition to the :option:`-O` optimizations.
219
220
221.. cmdoption:: -Q <arg>
222
223 Division control. The argument must be one of the following:
Georg Brandl734373c2009-01-03 21:55:17 +0000224
Georg Brandl59d121a2007-10-20 18:08:14 +0000225 ``old``
226 division of int/int and long/long return an int or long (*default*)
227 ``new``
228 new division semantics, i.e. division of int/int and long/long returns a
229 float
230 ``warn``
231 old division semantics with a warning for int/int and long/long
232 ``warnall``
233 old division semantics with a warning for all uses of the division operator
234
235 .. seealso::
236 :file:`Tools/scripts/fixdiv.py`
237 for a use of ``warnall``
238
239 :pep:`238` -- Changing the division operator
240
241
Barry Warsaw1e13eb02012-02-20 20:42:21 -0500242.. cmdoption:: -R
243
244 Turn on hash randomization, so that the :meth:`__hash__` values of str,
245 bytes and datetime objects are "salted" with an unpredictable random value.
246 Although they remain constant within an individual Python process, they are
247 not predictable between repeated invocations of Python.
248
249 This is intended to provide protection against a denial-of-service caused by
250 carefully-chosen inputs that exploit the worst case performance of a dict
Georg Brandl3aec5682012-02-21 22:36:27 +0100251 construction, O(n^2) complexity. See
Barry Warsaw1e13eb02012-02-20 20:42:21 -0500252 http://www.ocert.org/advisories/ocert-2011-003.html for details.
253
254 Changing hash values affects the order in which keys are retrieved from a
255 dict. Although Python has never made guarantees about this ordering (and it
256 typically varies between 32-bit and 64-bit builds), enough real-world code
257 implicitly relies on this non-guaranteed behavior that the randomization is
258 disabled by default.
259
260 See also :envvar:`PYTHONHASHSEED`.
261
262 .. versionadded:: 2.6.8
263
264
Christian Heimesaf748c32008-05-06 22:41:46 +0000265.. cmdoption:: -s
266
267 Don't add user site directory to sys.path
268
269 .. versionadded:: 2.6
270
271 .. seealso::
272
273 :pep:`370` -- Per user site-packages directory
274
275
Georg Brandl59d121a2007-10-20 18:08:14 +0000276.. cmdoption:: -S
277
278 Disable the import of the module :mod:`site` and the site-dependent
279 manipulations of :data:`sys.path` that it entails.
280
281
282.. cmdoption:: -t
283
284 Issue a warning when a source file mixes tabs and spaces for indentation in a
285 way that makes it depend on the worth of a tab expressed in spaces. Issue an
286 error when the option is given twice (:option:`-tt`).
287
288
289.. cmdoption:: -u
Georg Brandl734373c2009-01-03 21:55:17 +0000290
Georg Brandl59d121a2007-10-20 18:08:14 +0000291 Force stdin, stdout and stderr to be totally unbuffered. On systems where it
292 matters, also put stdin, stdout and stderr in binary mode.
Georg Brandl734373c2009-01-03 21:55:17 +0000293
Georg Brandlf4ef23f2007-10-30 17:51:18 +0000294 Note that there is internal buffering in :meth:`file.readlines` and
Georg Brandl59d121a2007-10-20 18:08:14 +0000295 :ref:`bltin-file-objects` (``for line in sys.stdin``) which is not influenced
296 by this option. To work around this, you will want to use
Georg Brandlf4ef23f2007-10-30 17:51:18 +0000297 :meth:`file.readline` inside a ``while 1:`` loop.
Georg Brandl59d121a2007-10-20 18:08:14 +0000298
299 See also :envvar:`PYTHONUNBUFFERED`.
300
301
Georg Brandl59d121a2007-10-20 18:08:14 +0000302.. cmdoption:: -v
Georg Brandl734373c2009-01-03 21:55:17 +0000303
Georg Brandl59d121a2007-10-20 18:08:14 +0000304 Print a message each time a module is initialized, showing the place
305 (filename or built-in module) from which it is loaded. When given twice
306 (:option:`-vv`), print a message for each file that is checked for when
307 searching for a module. Also provides information on module cleanup at exit.
308 See also :envvar:`PYTHONVERBOSE`.
309
310
311.. cmdoption:: -W arg
Georg Brandl734373c2009-01-03 21:55:17 +0000312
Georg Brandl59d121a2007-10-20 18:08:14 +0000313 Warning control. Python's warning machinery by default prints warning
314 messages to :data:`sys.stderr`. A typical warning message has the following
315 form::
316
317 file:line: category: message
Georg Brandl734373c2009-01-03 21:55:17 +0000318
Georg Brandl59d121a2007-10-20 18:08:14 +0000319 By default, each warning is printed once for each source line where it
320 occurs. This option controls how often warnings are printed.
321
322 Multiple :option:`-W` options may be given; when a warning matches more than
323 one option, the action for the last matching option is performed. Invalid
324 :option:`-W` options are ignored (though, a warning message is printed about
325 invalid options when the first warning is issued).
Georg Brandl734373c2009-01-03 21:55:17 +0000326
Georg Brandl59d121a2007-10-20 18:08:14 +0000327 Warnings can also be controlled from within a Python program using the
328 :mod:`warnings` module.
329
330 The simplest form of argument is one of the following action strings (or a
Brett Cannon1264f1e2010-01-01 01:47:00 +0000331 unique abbreviation) by themselves:
Georg Brandl734373c2009-01-03 21:55:17 +0000332
Georg Brandl59d121a2007-10-20 18:08:14 +0000333 ``ignore``
334 Ignore all warnings.
335 ``default``
336 Explicitly request the default behavior (printing each warning once per
337 source line).
338 ``all``
339 Print a warning each time it occurs (this may generate many messages if a
340 warning is triggered repeatedly for the same source line, such as inside a
341 loop).
342 ``module``
Georg Brandlf18d5ce2009-10-27 14:29:22 +0000343 Print each warning only the first time it occurs in each module.
Georg Brandl59d121a2007-10-20 18:08:14 +0000344 ``once``
345 Print each warning only the first time it occurs in the program.
346 ``error``
347 Raise an exception instead of printing a warning message.
Georg Brandl734373c2009-01-03 21:55:17 +0000348
349 The full form of argument is::
350
Georg Brandl59d121a2007-10-20 18:08:14 +0000351 action:message:category:module:line
352
353 Here, *action* is as explained above but only applies to messages that match
354 the remaining fields. Empty fields match all values; trailing empty fields
355 may be omitted. The *message* field matches the start of the warning message
356 printed; this match is case-insensitive. The *category* field matches the
357 warning category. This must be a class name; the match test whether the
358 actual warning category of the message is a subclass of the specified warning
359 category. The full class name must be given. The *module* field matches the
360 (fully-qualified) module name; this match is case-sensitive. The *line*
361 field matches the line number, where zero matches all line numbers and is
362 thus equivalent to an omitted line number.
363
364 .. seealso::
Nick Coghlan31f63152008-04-30 14:23:36 +0000365 :mod:`warnings` -- the warnings module
Georg Brandl59d121a2007-10-20 18:08:14 +0000366
367 :pep:`230` -- Warning framework
368
369
370.. cmdoption:: -x
Georg Brandl734373c2009-01-03 21:55:17 +0000371
Georg Brandl59d121a2007-10-20 18:08:14 +0000372 Skip the first line of the source, allowing use of non-Unix forms of
373 ``#!cmd``. This is intended for a DOS specific hack only.
Georg Brandl734373c2009-01-03 21:55:17 +0000374
Georg Brandl38853142009-04-28 18:23:28 +0000375 .. note:: The line numbers in error messages will be off by one.
Georg Brandl59d121a2007-10-20 18:08:14 +0000376
Georg Brandl59d121a2007-10-20 18:08:14 +0000377.. cmdoption:: -3
378
Georg Brandlc04c2892009-01-14 00:00:17 +0000379 Warn about Python 3.x incompatibilities which cannot be fixed trivially by
380 :ref:`2to3 <2to3-reference>`. Among these are:
Georg Brandl87983f22007-12-01 23:12:45 +0000381
382 * :meth:`dict.has_key`
383 * :func:`apply`
384 * :func:`callable`
385 * :func:`coerce`
386 * :func:`execfile`
387 * :func:`reduce`
388 * :func:`reload`
Georg Brandl59d121a2007-10-20 18:08:14 +0000389
Georg Brandl4425e7c2008-02-23 23:43:01 +0000390 Using these will emit a :exc:`DeprecationWarning`.
391
Georg Brandl59d121a2007-10-20 18:08:14 +0000392 .. versionadded:: 2.6
393
Barry Warsaw730820f2010-02-05 18:52:05 +0000394Options you shouldn't use
395~~~~~~~~~~~~~~~~~~~~~~~~~
Georg Brandl59d121a2007-10-20 18:08:14 +0000396
Barry Warsaw730820f2010-02-05 18:52:05 +0000397.. cmdoption:: -J
398
399 Reserved for use by Jython_.
400
401.. _Jython: http://jython.org
402
403.. cmdoption:: -U
404
405 Turns all string literals into unicodes globally. Do not be tempted to use
406 this option as it will probably break your world. It also produces
407 ``.pyc`` files with a different magic number than normal. Instead, you can
408 enable unicode literals on a per-module basis by using::
409
410 from __future__ import unicode_literals
411
412 at the top of the file. See :mod:`__future__` for details.
413
414.. cmdoption:: -X
415
416 Reserved for alternative implementations of Python to use for their own
417 purposes.
Georg Brandl59d121a2007-10-20 18:08:14 +0000418
Georg Brandl87983f22007-12-01 23:12:45 +0000419.. _using-on-envvars:
Georg Brandl59d121a2007-10-20 18:08:14 +0000420
421Environment variables
422---------------------
423
Georg Brandlaed6c662008-01-07 17:25:53 +0000424These environment variables influence Python's behavior.
425
Georg Brandl59d121a2007-10-20 18:08:14 +0000426.. envvar:: PYTHONHOME
Georg Brandl734373c2009-01-03 21:55:17 +0000427
Georg Brandl59d121a2007-10-20 18:08:14 +0000428 Change the location of the standard Python libraries. By default, the
Georg Brandl21297fa2008-01-20 21:10:08 +0000429 libraries are searched in :file:`{prefix}/lib/python{version}` and
430 :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and
Georg Brandl59d121a2007-10-20 18:08:14 +0000431 :file:`{exec_prefix}` are installation-dependent directories, both defaulting
432 to :file:`/usr/local`.
Georg Brandl734373c2009-01-03 21:55:17 +0000433
Georg Brandl59d121a2007-10-20 18:08:14 +0000434 When :envvar:`PYTHONHOME` is set to a single directory, its value replaces
435 both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values
Georg Brandl21297fa2008-01-20 21:10:08 +0000436 for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`.
Georg Brandl59d121a2007-10-20 18:08:14 +0000437
438
439.. envvar:: PYTHONPATH
440
Georg Brandlaed6c662008-01-07 17:25:53 +0000441 Augment the default search path for module files. The format is the same as
Georg Brandl59d121a2007-10-20 18:08:14 +0000442 the shell's :envvar:`PATH`: one or more directory pathnames separated by
Georg Brandl9c065742008-03-05 19:31:44 +0000443 :data:`os.pathsep` (e.g. colons on Unix or semicolons on Windows).
444 Non-existent directories are silently ignored.
Nick Coghlan31f63152008-04-30 14:23:36 +0000445
446 In addition to normal directories, individual :envvar:`PYTHONPATH` entries
447 may refer to zipfiles containing pure Python modules (in either source or
448 compiled form). Extension modules cannot be imported from zipfiles.
Georg Brandl734373c2009-01-03 21:55:17 +0000449
Georg Brandl59d121a2007-10-20 18:08:14 +0000450 The default search path is installation dependent, but generally begins with
Georg Brandl734373c2009-01-03 21:55:17 +0000451 :file:`{prefix}/lib/python{version}` (see :envvar:`PYTHONHOME` above). It
Georg Brandl59d121a2007-10-20 18:08:14 +0000452 is *always* appended to :envvar:`PYTHONPATH`.
Georg Brandl734373c2009-01-03 21:55:17 +0000453
Nick Coghlan31f63152008-04-30 14:23:36 +0000454 An additional directory will be inserted in the search path in front of
455 :envvar:`PYTHONPATH` as described above under
456 :ref:`using-on-interface-options`. The search path can be manipulated from
457 within a Python program as the variable :data:`sys.path`.
Georg Brandl59d121a2007-10-20 18:08:14 +0000458
459
460.. envvar:: PYTHONSTARTUP
Georg Brandl734373c2009-01-03 21:55:17 +0000461
Georg Brandl59d121a2007-10-20 18:08:14 +0000462 If this is the name of a readable file, the Python commands in that file are
463 executed before the first prompt is displayed in interactive mode. The file
Georg Brandla7395032007-10-21 12:15:05 +0000464 is executed in the same namespace where interactive commands are executed so
Georg Brandl59d121a2007-10-20 18:08:14 +0000465 that objects defined or imported in it can be used without qualification in
466 the interactive session. You can also change the prompts :data:`sys.ps1` and
467 :data:`sys.ps2` in this file.
468
469
470.. envvar:: PYTHONY2K
Georg Brandl734373c2009-01-03 21:55:17 +0000471
Georg Brandl59d121a2007-10-20 18:08:14 +0000472 Set this to a non-empty string to cause the :mod:`time` module to require
473 dates specified as strings to include 4-digit years, otherwise 2-digit years
474 are converted based on rules described in the :mod:`time` module
475 documentation.
476
477
478.. envvar:: PYTHONOPTIMIZE
Georg Brandl734373c2009-01-03 21:55:17 +0000479
Georg Brandl59d121a2007-10-20 18:08:14 +0000480 If this is set to a non-empty string it is equivalent to specifying the
481 :option:`-O` option. If set to an integer, it is equivalent to specifying
482 :option:`-O` multiple times.
483
484
485.. envvar:: PYTHONDEBUG
Georg Brandl734373c2009-01-03 21:55:17 +0000486
Georg Brandl59d121a2007-10-20 18:08:14 +0000487 If this is set to a non-empty string it is equivalent to specifying the
488 :option:`-d` option. If set to an integer, it is equivalent to specifying
489 :option:`-d` multiple times.
490
491
492.. envvar:: PYTHONINSPECT
Georg Brandl734373c2009-01-03 21:55:17 +0000493
Georg Brandl59d121a2007-10-20 18:08:14 +0000494 If this is set to a non-empty string it is equivalent to specifying the
495 :option:`-i` option.
496
Georg Brandlaed6c662008-01-07 17:25:53 +0000497 This variable can also be modified by Python code using :data:`os.environ`
498 to force inspect mode on program termination.
499
Georg Brandl59d121a2007-10-20 18:08:14 +0000500
501.. envvar:: PYTHONUNBUFFERED
Georg Brandl734373c2009-01-03 21:55:17 +0000502
Georg Brandl59d121a2007-10-20 18:08:14 +0000503 If this is set to a non-empty string it is equivalent to specifying the
504 :option:`-u` option.
505
506
507.. envvar:: PYTHONVERBOSE
Georg Brandl734373c2009-01-03 21:55:17 +0000508
Georg Brandl59d121a2007-10-20 18:08:14 +0000509 If this is set to a non-empty string it is equivalent to specifying the
510 :option:`-v` option. If set to an integer, it is equivalent to specifying
511 :option:`-v` multiple times.
512
513
514.. envvar:: PYTHONCASEOK
Georg Brandl734373c2009-01-03 21:55:17 +0000515
Georg Brandl59d121a2007-10-20 18:08:14 +0000516 If this is set, Python ignores case in :keyword:`import` statements. This
517 only works on Windows.
518
Georg Brandl2da0fce2008-01-07 17:09:35 +0000519
520.. envvar:: PYTHONDONTWRITEBYTECODE
521
Georg Brandlaed6c662008-01-07 17:25:53 +0000522 If this is set, Python won't try to write ``.pyc`` or ``.pyo`` files on the
Georg Brandl2da0fce2008-01-07 17:09:35 +0000523 import of source modules.
524
525 .. versionadded:: 2.6
Georg Brandlaed6c662008-01-07 17:25:53 +0000526
Barry Warsaw1e13eb02012-02-20 20:42:21 -0500527.. envvar:: PYTHONHASHSEED
528
529 If this variable is set to ``random``, the effect is the same as specifying
530 the :option:`-R` option: a random value is used to seed the hashes of str,
531 bytes and datetime objects.
532
533 If :envvar:`PYTHONHASHSEED` is set to an integer value, it is used as a
534 fixed seed for generating the hash() of the types covered by the hash
535 randomization.
536
537 Its purpose is to allow repeatable hashing, such as for selftests for the
538 interpreter itself, or to allow a cluster of python processes to share hash
539 values.
540
541 The integer must be a decimal number in the range [0,4294967295].
542 Specifying the value 0 will lead to the same hash values as when hash
543 randomization is disabled.
544
545 .. versionadded:: 2.6.8
546
547
Martin v. Löwis99815892008-06-01 07:20:46 +0000548.. envvar:: PYTHONIOENCODING
549
550 Overrides the encoding used for stdin/stdout/stderr, in the syntax
Georg Brandld9875452008-06-11 17:57:44 +0000551 ``encodingname:errorhandler``. The ``:errorhandler`` part is optional and
552 has the same meaning as in :func:`str.encode`.
Martin v. Löwis99815892008-06-01 07:20:46 +0000553
554 .. versionadded:: 2.6
555
Georg Brandlaed6c662008-01-07 17:25:53 +0000556
Christian Heimesaf748c32008-05-06 22:41:46 +0000557.. envvar:: PYTHONNOUSERSITE
558
559 If this is set, Python won't add the user site directory to sys.path
560
561 .. versionadded:: 2.6
562
563 .. seealso::
564
565 :pep:`370` -- Per user site-packages directory
566
567
568.. envvar:: PYTHONUSERBASE
569
570 Sets the base directory for the user site directory
571
572 .. versionadded:: 2.6
573
574 .. seealso::
575
576 :pep:`370` -- Per user site-packages directory
577
578
Georg Brandlaed6c662008-01-07 17:25:53 +0000579.. envvar:: PYTHONEXECUTABLE
580
581 If this environment variable is set, ``sys.argv[0]`` will be set to its
582 value instead of the value got through the C runtime. Only works on
Georg Brandl9af94982008-09-13 17:41:16 +0000583 Mac OS X.
Georg Brandlaed6c662008-01-07 17:25:53 +0000584
585
586Debug-mode variables
Georg Brandl61d28862008-01-07 18:57:03 +0000587~~~~~~~~~~~~~~~~~~~~
Georg Brandlaed6c662008-01-07 17:25:53 +0000588
589Setting these variables only has an effect in a debug build of Python, that is,
Georg Brandl61d28862008-01-07 18:57:03 +0000590if Python was configured with the :option:`--with-pydebug` build option.
Georg Brandlaed6c662008-01-07 17:25:53 +0000591
592.. envvar:: PYTHONTHREADDEBUG
593
Nick Coghlan31f63152008-04-30 14:23:36 +0000594 If set, Python will print threading debug info.
Georg Brandlaed6c662008-01-07 17:25:53 +0000595
596 .. versionchanged:: 2.6
597 Previously, this variable was called ``THREADDEBUG``.
598
599.. envvar:: PYTHONDUMPREFS
600
601 If set, Python will dump objects and reference counts still alive after
602 shutting down the interpreter.
603
604
605.. envvar:: PYTHONMALLOCSTATS
606
607 If set, Python will print memory allocation statistics every time a new
608 object arena is created, and on shutdown.
609