blob: 7ccf8f074f6b88b2a9235f2235b0268c3591e347 [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 Brandl6c14e582009-10-22 11:48:10 +000011.. impl-detail::
Georg Brandlc62ef8b2009-01-03 20:55:06 +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
Brett Cannonf31d1a02010-01-01 01:44:57 +000024 python [-BdEiOQsStuUvVWxX3?] [-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
61 Execute the Python code in *command*. *command* can be one ore more
62 statements separated by newlines, with significant leading whitespace as in
63 normal module code.
Georg Brandlc62ef8b2009-01-03 20:55:06 +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 Brandlc62ef8b2009-01-03 20:55:06 +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
Nick Coghland39600e2009-02-08 01:26:34 +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 Brandl59d121a2007-10-20 18:08:14 +000087 .. note::
88
Georg Brandld7d4fd72009-07-26 14:37:28 +000089 This option cannot be used with built-in modules and extension modules
Nick Coghlan31f63152008-04-30 14:23:36 +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 Brandlc62ef8b2009-01-03 20:55:06 +000093
Georg Brandl59d121a2007-10-20 18:08:14 +000094 If this option is given, the first element of :data:`sys.argv` will be the
Nick Coghlan31f63152008-04-30 14:23:36 +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 Brandlc62ef8b2009-01-03 20:55:06 +000097
Georg Brandl59d121a2007-10-20 18:08:14 +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 Brandlc62ef8b2009-01-03 20:55:06 +0000104 .. seealso::
Georg Brandl59d121a2007-10-20 18:08:14 +0000105 :func:`runpy.run_module`
Nick Coghland39600e2009-02-08 01:26:34 +0000106 Equivalent functionality directly available to Python code
Georg Brandl59d121a2007-10-20 18:08:14 +0000107
108 :pep:`338` -- Executing modules as scripts
109
Nick Coghlan31f63152008-04-30 14:23:36 +0000110 .. versionadded:: 2.4
111
Georg Brandl59d121a2007-10-20 18:08:14 +0000112 .. versionchanged:: 2.5
Nick Coghlan31f63152008-04-30 14:23:36 +0000113 The named module can now be located inside a package.
Georg Brandl59d121a2007-10-20 18:08:14 +0000114
Nick Coghland39600e2009-02-08 01:26:34 +0000115 .. versionchanged:: 2.7
116 Supply the package name to run a ``__main__`` submodule.
117
Georg Brandl59d121a2007-10-20 18:08:14 +0000118
119.. describe:: -
120
121 Read commands from standard input (:data:`sys.stdin`). If standard input is
122 a terminal, :option:`-i` is implied.
123
124 If this option is given, the first element of :data:`sys.argv` will be
Nick Coghlan31f63152008-04-30 14:23:36 +0000125 ``"-"`` and the current directory will be added to the start of
126 :data:`sys.path`.
127
128
129.. describe:: <script>
130
131 Execute the Python code contained in *script*, which must be a filesystem
132 path (absolute or relative) referring to either a Python file, a directory
133 containing a ``__main__.py`` file, or a zipfile containing a
134 ``__main__.py`` file.
135
136 If this option is given, the first element of :data:`sys.argv` will be the
137 script name as given on the command line.
138
139 If the script name refers directly to a Python file, the directory
140 containing that file is added to the start of :data:`sys.path`, and the
141 file is executed as the :mod:`__main__` module.
142
143 If the script name refers to a directory or zipfile, the script name is
144 added to the start of :data:`sys.path` and the ``__main__.py`` file in
145 that location is executed as the :mod:`__main__` module.
146
147 .. versionchanged:: 2.5
148 Directories and zipfiles containing a ``__main__.py`` file at the top
149 level are now considered valid Python scripts.
150
151If no interface option is given, :option:`-i` is implied, ``sys.argv[0]`` is
152an empty string (``""``) and the current directory will be added to the
153start of :data:`sys.path`.
Georg Brandl59d121a2007-10-20 18:08:14 +0000154
Georg Brandl14da8e82008-11-07 08:27:39 +0000155.. seealso:: :ref:`tut-invoking`
Georg Brandl59d121a2007-10-20 18:08:14 +0000156
157
Georg Brandl59d121a2007-10-20 18:08:14 +0000158Generic options
159~~~~~~~~~~~~~~~
160
161.. cmdoption:: -?
162 -h
163 --help
164
165 Print a short description of all command line options.
166
Nick Coghlan31f63152008-04-30 14:23:36 +0000167 .. versionchanged:: 2.5
Georg Brandl59d121a2007-10-20 18:08:14 +0000168 The ``--help`` variant.
169
170
171.. cmdoption:: -V
172 --version
173
174 Print the Python version number and exit. Example output could be::
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000175
Georg Brandl59d121a2007-10-20 18:08:14 +0000176 Python 2.5.1
177
Nick Coghlan31f63152008-04-30 14:23:36 +0000178 .. versionchanged:: 2.5
Georg Brandl59d121a2007-10-20 18:08:14 +0000179 The ``--version`` variant.
180
181
182Miscellaneous options
183~~~~~~~~~~~~~~~~~~~~~
184
Georg Brandl2da0fce2008-01-07 17:09:35 +0000185.. cmdoption:: -B
186
187 If given, Python won't try to write ``.pyc`` or ``.pyo`` files on the
188 import of source modules. See also :envvar:`PYTHONDONTWRITEBYTECODE`.
189
190 .. versionadded:: 2.6
191
192
Georg Brandl59d121a2007-10-20 18:08:14 +0000193.. cmdoption:: -d
194
195 Turn on parser debugging output (for wizards only, depending on compilation
196 options). See also :envvar:`PYTHONDEBUG`.
197
198
199.. cmdoption:: -E
200
Georg Brandlc5004f32007-10-20 19:05:45 +0000201 Ignore all :envvar:`PYTHON*` environment variables, e.g.
Georg Brandl35073332007-10-20 19:08:36 +0000202 :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set.
Georg Brandl59d121a2007-10-20 18:08:14 +0000203
Georg Brandlc5004f32007-10-20 19:05:45 +0000204 .. versionadded:: 2.2
Georg Brandl59d121a2007-10-20 18:08:14 +0000205
206
207.. cmdoption:: -i
208
209 When a script is passed as first argument or the :option:`-c` option is used,
210 enter interactive mode after executing the script or the command, even when
211 :data:`sys.stdin` does not appear to be a terminal. The
212 :envvar:`PYTHONSTARTUP` file is not read.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000213
Georg Brandl59d121a2007-10-20 18:08:14 +0000214 This can be useful to inspect global variables or a stack trace when a script
215 raises an exception. See also :envvar:`PYTHONINSPECT`.
216
217
218.. cmdoption:: -O
219
220 Turn on basic optimizations. This changes the filename extension for
Georg Brandl5e52db02007-10-21 10:45:46 +0000221 compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also
Georg Brandl59d121a2007-10-20 18:08:14 +0000222 :envvar:`PYTHONOPTIMIZE`.
223
224
225.. cmdoption:: -OO
226
227 Discard docstrings in addition to the :option:`-O` optimizations.
228
229
230.. cmdoption:: -Q <arg>
231
232 Division control. The argument must be one of the following:
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000233
Georg Brandl59d121a2007-10-20 18:08:14 +0000234 ``old``
235 division of int/int and long/long return an int or long (*default*)
236 ``new``
237 new division semantics, i.e. division of int/int and long/long returns a
238 float
239 ``warn``
240 old division semantics with a warning for int/int and long/long
241 ``warnall``
242 old division semantics with a warning for all uses of the division operator
243
244 .. seealso::
245 :file:`Tools/scripts/fixdiv.py`
246 for a use of ``warnall``
247
248 :pep:`238` -- Changing the division operator
249
250
Christian Heimesaf748c32008-05-06 22:41:46 +0000251.. cmdoption:: -s
252
253 Don't add user site directory to sys.path
254
255 .. versionadded:: 2.6
256
257 .. seealso::
258
259 :pep:`370` -- Per user site-packages directory
260
261
Georg Brandl59d121a2007-10-20 18:08:14 +0000262.. cmdoption:: -S
263
264 Disable the import of the module :mod:`site` and the site-dependent
265 manipulations of :data:`sys.path` that it entails.
266
267
268.. cmdoption:: -t
269
270 Issue a warning when a source file mixes tabs and spaces for indentation in a
271 way that makes it depend on the worth of a tab expressed in spaces. Issue an
272 error when the option is given twice (:option:`-tt`).
273
274
275.. cmdoption:: -u
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000276
Georg Brandl59d121a2007-10-20 18:08:14 +0000277 Force stdin, stdout and stderr to be totally unbuffered. On systems where it
278 matters, also put stdin, stdout and stderr in binary mode.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000279
Georg Brandlf4ef23f2007-10-30 17:51:18 +0000280 Note that there is internal buffering in :meth:`file.readlines` and
Georg Brandl59d121a2007-10-20 18:08:14 +0000281 :ref:`bltin-file-objects` (``for line in sys.stdin``) which is not influenced
282 by this option. To work around this, you will want to use
Georg Brandlf4ef23f2007-10-30 17:51:18 +0000283 :meth:`file.readline` inside a ``while 1:`` loop.
Georg Brandl59d121a2007-10-20 18:08:14 +0000284
285 See also :envvar:`PYTHONUNBUFFERED`.
286
287
Georg Brandl59d121a2007-10-20 18:08:14 +0000288.. cmdoption:: -v
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000289
Georg Brandl59d121a2007-10-20 18:08:14 +0000290 Print a message each time a module is initialized, showing the place
291 (filename or built-in module) from which it is loaded. When given twice
292 (:option:`-vv`), print a message for each file that is checked for when
293 searching for a module. Also provides information on module cleanup at exit.
294 See also :envvar:`PYTHONVERBOSE`.
295
296
297.. cmdoption:: -W arg
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000298
Georg Brandl59d121a2007-10-20 18:08:14 +0000299 Warning control. Python's warning machinery by default prints warning
300 messages to :data:`sys.stderr`. A typical warning message has the following
301 form::
302
303 file:line: category: message
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000304
Georg Brandl59d121a2007-10-20 18:08:14 +0000305 By default, each warning is printed once for each source line where it
306 occurs. This option controls how often warnings are printed.
307
308 Multiple :option:`-W` options may be given; when a warning matches more than
309 one option, the action for the last matching option is performed. Invalid
310 :option:`-W` options are ignored (though, a warning message is printed about
311 invalid options when the first warning is issued).
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000312
Georg Brandl59d121a2007-10-20 18:08:14 +0000313 Warnings can also be controlled from within a Python program using the
314 :mod:`warnings` module.
315
316 The simplest form of argument is one of the following action strings (or a
Brett Cannonf31d1a02010-01-01 01:44:57 +0000317 unique abbreviation) by themselves:
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000318
Georg Brandl59d121a2007-10-20 18:08:14 +0000319 ``ignore``
320 Ignore all warnings.
321 ``default``
322 Explicitly request the default behavior (printing each warning once per
323 source line).
324 ``all``
325 Print a warning each time it occurs (this may generate many messages if a
326 warning is triggered repeatedly for the same source line, such as inside a
327 loop).
328 ``module``
Georg Brandl5a85d5c2009-06-24 06:41:19 +0000329 Print each warning only the first time it occurs in each module.
Georg Brandl59d121a2007-10-20 18:08:14 +0000330 ``once``
331 Print each warning only the first time it occurs in the program.
332 ``error``
333 Raise an exception instead of printing a warning message.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000334
335 The full form of argument is::
336
Georg Brandl59d121a2007-10-20 18:08:14 +0000337 action:message:category:module:line
338
339 Here, *action* is as explained above but only applies to messages that match
340 the remaining fields. Empty fields match all values; trailing empty fields
341 may be omitted. The *message* field matches the start of the warning message
342 printed; this match is case-insensitive. The *category* field matches the
343 warning category. This must be a class name; the match test whether the
344 actual warning category of the message is a subclass of the specified warning
345 category. The full class name must be given. The *module* field matches the
346 (fully-qualified) module name; this match is case-sensitive. The *line*
347 field matches the line number, where zero matches all line numbers and is
348 thus equivalent to an omitted line number.
349
350 .. seealso::
Nick Coghlan31f63152008-04-30 14:23:36 +0000351 :mod:`warnings` -- the warnings module
Georg Brandl59d121a2007-10-20 18:08:14 +0000352
353 :pep:`230` -- Warning framework
354
Philip Jenveyaebbaeb2010-04-06 23:24:45 +0000355 :envvar:`PYTHONWARNINGS`
356
Georg Brandl59d121a2007-10-20 18:08:14 +0000357
358.. cmdoption:: -x
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000359
Georg Brandl59d121a2007-10-20 18:08:14 +0000360 Skip the first line of the source, allowing use of non-Unix forms of
361 ``#!cmd``. This is intended for a DOS specific hack only.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000362
Georg Brandld91f8cf2009-04-27 15:10:44 +0000363 .. note:: The line numbers in error messages will be off by one.
Georg Brandl59d121a2007-10-20 18:08:14 +0000364
Georg Brandl59d121a2007-10-20 18:08:14 +0000365.. cmdoption:: -3
366
Benjamin Petersona9242892009-01-09 03:03:05 +0000367 Warn about Python 3.x incompatibilities which cannot be fixed trivially by
Benjamin Petersonfe8076e2009-01-09 02:53:35 +0000368 :ref:`2to3 <2to3-reference>`. Among these are:
Georg Brandl87983f22007-12-01 23:12:45 +0000369
370 * :meth:`dict.has_key`
371 * :func:`apply`
372 * :func:`callable`
373 * :func:`coerce`
374 * :func:`execfile`
375 * :func:`reduce`
376 * :func:`reload`
Georg Brandl59d121a2007-10-20 18:08:14 +0000377
Georg Brandl4425e7c2008-02-23 23:43:01 +0000378 Using these will emit a :exc:`DeprecationWarning`.
379
Georg Brandl59d121a2007-10-20 18:08:14 +0000380 .. versionadded:: 2.6
381
Barry Warsawb1e66ee2010-02-05 18:45:25 +0000382Options you shouldn't use
383~~~~~~~~~~~~~~~~~~~~~~~~~
Georg Brandl59d121a2007-10-20 18:08:14 +0000384
Barry Warsawb1e66ee2010-02-05 18:45:25 +0000385.. cmdoption:: -J
386
387 Reserved for use by Jython_.
388
389.. _Jython: http://jython.org
390
391.. cmdoption:: -U
392
393 Turns all string literals into unicodes globally. Do not be tempted to use
394 this option as it will probably break your world. It also produces
395 ``.pyc`` files with a different magic number than normal. Instead, you can
396 enable unicode literals on a per-module basis by using::
397
398 from __future__ import unicode_literals
399
400 at the top of the file. See :mod:`__future__` for details.
401
402.. cmdoption:: -X
403
404 Reserved for alternative implementations of Python to use for their own
405 purposes.
Georg Brandl59d121a2007-10-20 18:08:14 +0000406
Georg Brandl87983f22007-12-01 23:12:45 +0000407.. _using-on-envvars:
Georg Brandl59d121a2007-10-20 18:08:14 +0000408
409Environment variables
410---------------------
411
Georg Brandlaed6c662008-01-07 17:25:53 +0000412These environment variables influence Python's behavior.
413
Georg Brandl59d121a2007-10-20 18:08:14 +0000414.. envvar:: PYTHONHOME
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000415
Georg Brandl59d121a2007-10-20 18:08:14 +0000416 Change the location of the standard Python libraries. By default, the
Georg Brandl21297fa2008-01-20 21:10:08 +0000417 libraries are searched in :file:`{prefix}/lib/python{version}` and
418 :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and
Georg Brandl59d121a2007-10-20 18:08:14 +0000419 :file:`{exec_prefix}` are installation-dependent directories, both defaulting
420 to :file:`/usr/local`.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000421
Georg Brandl59d121a2007-10-20 18:08:14 +0000422 When :envvar:`PYTHONHOME` is set to a single directory, its value replaces
423 both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values
Georg Brandl21297fa2008-01-20 21:10:08 +0000424 for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`.
Georg Brandl59d121a2007-10-20 18:08:14 +0000425
426
427.. envvar:: PYTHONPATH
428
Georg Brandlaed6c662008-01-07 17:25:53 +0000429 Augment the default search path for module files. The format is the same as
Georg Brandl59d121a2007-10-20 18:08:14 +0000430 the shell's :envvar:`PATH`: one or more directory pathnames separated by
Georg Brandl9c065742008-03-05 19:31:44 +0000431 :data:`os.pathsep` (e.g. colons on Unix or semicolons on Windows).
432 Non-existent directories are silently ignored.
Nick Coghlan31f63152008-04-30 14:23:36 +0000433
434 In addition to normal directories, individual :envvar:`PYTHONPATH` entries
435 may refer to zipfiles containing pure Python modules (in either source or
436 compiled form). Extension modules cannot be imported from zipfiles.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000437
Georg Brandl59d121a2007-10-20 18:08:14 +0000438 The default search path is installation dependent, but generally begins with
Georg Brandlfc29f272009-01-02 20:25:14 +0000439 :file:`{prefix}/lib/python{version}` (see :envvar:`PYTHONHOME` above). It
Georg Brandl59d121a2007-10-20 18:08:14 +0000440 is *always* appended to :envvar:`PYTHONPATH`.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000441
Nick Coghlan31f63152008-04-30 14:23:36 +0000442 An additional directory will be inserted in the search path in front of
443 :envvar:`PYTHONPATH` as described above under
444 :ref:`using-on-interface-options`. The search path can be manipulated from
445 within a Python program as the variable :data:`sys.path`.
Georg Brandl59d121a2007-10-20 18:08:14 +0000446
447
448.. envvar:: PYTHONSTARTUP
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000449
Georg Brandl59d121a2007-10-20 18:08:14 +0000450 If this is the name of a readable file, the Python commands in that file are
451 executed before the first prompt is displayed in interactive mode. The file
Georg Brandla7395032007-10-21 12:15:05 +0000452 is executed in the same namespace where interactive commands are executed so
Georg Brandl59d121a2007-10-20 18:08:14 +0000453 that objects defined or imported in it can be used without qualification in
454 the interactive session. You can also change the prompts :data:`sys.ps1` and
455 :data:`sys.ps2` in this file.
456
457
458.. envvar:: PYTHONY2K
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000459
Georg Brandl59d121a2007-10-20 18:08:14 +0000460 Set this to a non-empty string to cause the :mod:`time` module to require
461 dates specified as strings to include 4-digit years, otherwise 2-digit years
462 are converted based on rules described in the :mod:`time` module
463 documentation.
464
465
466.. envvar:: PYTHONOPTIMIZE
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000467
Georg Brandl59d121a2007-10-20 18:08:14 +0000468 If this is set to a non-empty string it is equivalent to specifying the
469 :option:`-O` option. If set to an integer, it is equivalent to specifying
470 :option:`-O` multiple times.
471
472
473.. envvar:: PYTHONDEBUG
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000474
Georg Brandl59d121a2007-10-20 18:08:14 +0000475 If this is set to a non-empty string it is equivalent to specifying the
476 :option:`-d` option. If set to an integer, it is equivalent to specifying
477 :option:`-d` multiple times.
478
479
480.. envvar:: PYTHONINSPECT
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000481
Georg Brandl59d121a2007-10-20 18:08:14 +0000482 If this is set to a non-empty string it is equivalent to specifying the
483 :option:`-i` option.
484
Georg Brandlaed6c662008-01-07 17:25:53 +0000485 This variable can also be modified by Python code using :data:`os.environ`
486 to force inspect mode on program termination.
487
Georg Brandl59d121a2007-10-20 18:08:14 +0000488
489.. envvar:: PYTHONUNBUFFERED
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000490
Georg Brandl59d121a2007-10-20 18:08:14 +0000491 If this is set to a non-empty string it is equivalent to specifying the
492 :option:`-u` option.
493
494
495.. envvar:: PYTHONVERBOSE
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000496
Georg Brandl59d121a2007-10-20 18:08:14 +0000497 If this is set to a non-empty string it is equivalent to specifying the
498 :option:`-v` option. If set to an integer, it is equivalent to specifying
499 :option:`-v` multiple times.
500
501
502.. envvar:: PYTHONCASEOK
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000503
Georg Brandl59d121a2007-10-20 18:08:14 +0000504 If this is set, Python ignores case in :keyword:`import` statements. This
505 only works on Windows.
506
Georg Brandl2da0fce2008-01-07 17:09:35 +0000507
508.. envvar:: PYTHONDONTWRITEBYTECODE
509
Georg Brandlaed6c662008-01-07 17:25:53 +0000510 If this is set, Python won't try to write ``.pyc`` or ``.pyo`` files on the
Georg Brandl2da0fce2008-01-07 17:09:35 +0000511 import of source modules.
512
513 .. versionadded:: 2.6
Georg Brandlaed6c662008-01-07 17:25:53 +0000514
Martin v. Löwis99815892008-06-01 07:20:46 +0000515.. envvar:: PYTHONIOENCODING
516
517 Overrides the encoding used for stdin/stdout/stderr, in the syntax
Georg Brandld9875452008-06-11 17:57:44 +0000518 ``encodingname:errorhandler``. The ``:errorhandler`` part is optional and
519 has the same meaning as in :func:`str.encode`.
Martin v. Löwis99815892008-06-01 07:20:46 +0000520
521 .. versionadded:: 2.6
522
Georg Brandlaed6c662008-01-07 17:25:53 +0000523
Christian Heimesaf748c32008-05-06 22:41:46 +0000524.. envvar:: PYTHONNOUSERSITE
525
526 If this is set, Python won't add the user site directory to sys.path
527
528 .. versionadded:: 2.6
529
530 .. seealso::
531
532 :pep:`370` -- Per user site-packages directory
533
534
535.. envvar:: PYTHONUSERBASE
536
537 Sets the base directory for the user site directory
538
539 .. versionadded:: 2.6
540
541 .. seealso::
542
543 :pep:`370` -- Per user site-packages directory
544
545
Georg Brandlaed6c662008-01-07 17:25:53 +0000546.. envvar:: PYTHONEXECUTABLE
547
548 If this environment variable is set, ``sys.argv[0]`` will be set to its
549 value instead of the value got through the C runtime. Only works on
Georg Brandl9af94982008-09-13 17:41:16 +0000550 Mac OS X.
Georg Brandlaed6c662008-01-07 17:25:53 +0000551
Philip Jenveyaebbaeb2010-04-06 23:24:45 +0000552.. envvar:: PYTHONWARNINGS
553
554 This is the equivalent to the :option:`-W` option. If set to a comma
555 separated string, it is equivalent to specifying :option:`-W` multiple
556 times.
557
Georg Brandlaed6c662008-01-07 17:25:53 +0000558
559Debug-mode variables
Georg Brandl61d28862008-01-07 18:57:03 +0000560~~~~~~~~~~~~~~~~~~~~
Georg Brandlaed6c662008-01-07 17:25:53 +0000561
562Setting these variables only has an effect in a debug build of Python, that is,
Georg Brandl61d28862008-01-07 18:57:03 +0000563if Python was configured with the :option:`--with-pydebug` build option.
Georg Brandlaed6c662008-01-07 17:25:53 +0000564
565.. envvar:: PYTHONTHREADDEBUG
566
Nick Coghlan31f63152008-04-30 14:23:36 +0000567 If set, Python will print threading debug info.
Georg Brandlaed6c662008-01-07 17:25:53 +0000568
569 .. versionchanged:: 2.6
570 Previously, this variable was called ``THREADDEBUG``.
571
572.. envvar:: PYTHONDUMPREFS
573
574 If set, Python will dump objects and reference counts still alive after
575 shutting down the interpreter.
576
577
578.. envvar:: PYTHONMALLOCSTATS
579
580 If set, Python will print memory allocation statistics every time a new
581 object arena is created, and on shutdown.
582