blob: 0199f9fee3dd25868bebe40030eb9936ece18b05 [file] [log] [blame]
Georg Brandl59d121a2007-10-20 18:08:14 +00001.. highlightlang:: none
2
Benjamin Petersonf3a8c662010-04-06 23:32:27 +00003.. ATTENTION: You probably should update Misc/python.man, too, if you modify
4.. this file.
5
Georg Brandl87983f22007-12-01 23:12:45 +00006.. _using-on-general:
7
Georg Brandl1cddfed2007-10-20 18:33:20 +00008Command line and environment
9============================
Georg Brandl59d121a2007-10-20 18:08:14 +000010
11The CPython interpreter scans the command line and the environment for various
12settings.
13
Georg Brandl6c14e582009-10-22 11:48:10 +000014.. impl-detail::
Georg Brandlc62ef8b2009-01-03 20:55:06 +000015
Georg Brandlcbcfe4f2007-12-03 19:57:02 +000016 Other implementations' command line schemes may differ. See
Georg Brandl59d121a2007-10-20 18:08:14 +000017 :ref:`implementations` for further resources.
18
19
Georg Brandl87983f22007-12-01 23:12:45 +000020.. _using-on-cmdline:
21
Georg Brandl59d121a2007-10-20 18:08:14 +000022Command line
23------------
24
25When invoking Python, you may specify any of these options::
26
Brett Cannonf31d1a02010-01-01 01:44:57 +000027 python [-BdEiOQsStuUvVWxX3?] [-c command | -m module-name | script | - ] [args]
Georg Brandl59d121a2007-10-20 18:08:14 +000028
29The most common use case is, of course, a simple invocation of a script::
30
31 python myscript.py
32
33
Nick Coghlan31f63152008-04-30 14:23:36 +000034.. _using-on-interface-options:
35
Georg Brandl59d121a2007-10-20 18:08:14 +000036Interface options
37~~~~~~~~~~~~~~~~~
38
Nick Coghlan31f63152008-04-30 14:23:36 +000039The interpreter interface resembles that of the UNIX shell, but provides some
40additional methods of invocation:
Georg Brandl59d121a2007-10-20 18:08:14 +000041
42* When called with standard input connected to a tty device, it prompts for
43 commands and executes them until an EOF (an end-of-file character, you can
44 produce that with *Ctrl-D* on UNIX or *Ctrl-Z, Enter* on Windows) is read.
45* When called with a file name argument or with a file as standard input, it
46 reads and executes a script from that file.
Nick Coghlan31f63152008-04-30 14:23:36 +000047* When called with a directory name argument, it reads and executes an
48 appropriately named script from that directory.
Georg Brandl59d121a2007-10-20 18:08:14 +000049* When called with ``-c command``, it executes the Python statement(s) given as
50 *command*. Here *command* may contain multiple statements separated by
51 newlines. Leading whitespace is significant in Python statements!
Nick Coghlan31f63152008-04-30 14:23:36 +000052* When called with ``-m module-name``, the given module is located on the
Georg Brandl59d121a2007-10-20 18:08:14 +000053 Python module path and executed as a script.
54
55In non-interactive mode, the entire input is parsed before it is executed.
56
57An interface option terminates the list of options consumed by the interpreter,
58all consecutive arguments will end up in :data:`sys.argv` -- note that the first
59element, subscript zero (``sys.argv[0]``), is a string reflecting the program's
60source.
61
62.. cmdoption:: -c <command>
63
64 Execute the Python code in *command*. *command* can be one ore more
65 statements separated by newlines, with significant leading whitespace as in
66 normal module code.
Georg Brandlc62ef8b2009-01-03 20:55:06 +000067
Georg Brandl59d121a2007-10-20 18:08:14 +000068 If this option is given, the first element of :data:`sys.argv` will be
Nick Coghlan31f63152008-04-30 14:23:36 +000069 ``"-c"`` and the current directory will be added to the start of
70 :data:`sys.path` (allowing modules in that directory to be imported as top
71 level modules).
Georg Brandl59d121a2007-10-20 18:08:14 +000072
73
74.. cmdoption:: -m <module-name>
75
Nick Coghlan31f63152008-04-30 14:23:36 +000076 Search :data:`sys.path` for the named module and execute its contents as
77 the :mod:`__main__` module.
Georg Brandlc62ef8b2009-01-03 20:55:06 +000078
Georg Brandl59d121a2007-10-20 18:08:14 +000079 Since the argument is a *module* name, you must not give a file extension
Nick Coghlan31f63152008-04-30 14:23:36 +000080 (``.py``). The ``module-name`` should be a valid Python module name, but
81 the implementation may not always enforce this (e.g. it may allow you to
82 use a name that includes a hyphen).
Georg Brandl59d121a2007-10-20 18:08:14 +000083
Nick Coghland39600e2009-02-08 01:26:34 +000084 Package names are also permitted. When a package name is supplied instead
85 of a normal module, the interpreter will execute ``<pkg>.__main__`` as
86 the main module. This behaviour is deliberately similar to the handling
87 of directories and zipfiles that are passed to the interpreter as the
88 script argument.
89
Georg Brandl59d121a2007-10-20 18:08:14 +000090 .. note::
91
Georg Brandld7d4fd72009-07-26 14:37:28 +000092 This option cannot be used with built-in modules and extension modules
Nick Coghlan31f63152008-04-30 14:23:36 +000093 written in C, since they do not have Python module files. However, it
94 can still be used for precompiled modules, even if the original source
95 file is not available.
Georg Brandlc62ef8b2009-01-03 20:55:06 +000096
Georg Brandl59d121a2007-10-20 18:08:14 +000097 If this option is given, the first element of :data:`sys.argv` will be the
Nick Coghlanc5e44852010-04-28 14:51:08 +000098 full path to the module file (while the module file is being located, the
99 first element will be set to ``"-m"``). As with the :option:`-c` option,
100 the current directory will be added to the start of :data:`sys.path`.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000101
Georg Brandl59d121a2007-10-20 18:08:14 +0000102 Many standard library modules contain code that is invoked on their execution
103 as a script. An example is the :mod:`timeit` module::
104
105 python -mtimeit -s 'setup here' 'benchmarked code here'
106 python -mtimeit -h # for details
107
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000108 .. seealso::
Georg Brandl59d121a2007-10-20 18:08:14 +0000109 :func:`runpy.run_module`
Nick Coghland39600e2009-02-08 01:26:34 +0000110 Equivalent functionality directly available to Python code
Georg Brandl59d121a2007-10-20 18:08:14 +0000111
112 :pep:`338` -- Executing modules as scripts
113
Nick Coghlan31f63152008-04-30 14:23:36 +0000114 .. versionadded:: 2.4
115
Georg Brandl59d121a2007-10-20 18:08:14 +0000116 .. versionchanged:: 2.5
Nick Coghlan31f63152008-04-30 14:23:36 +0000117 The named module can now be located inside a package.
Georg Brandl59d121a2007-10-20 18:08:14 +0000118
Nick Coghland39600e2009-02-08 01:26:34 +0000119 .. versionchanged:: 2.7
120 Supply the package name to run a ``__main__`` submodule.
121
Georg Brandl59d121a2007-10-20 18:08:14 +0000122
123.. describe:: -
124
125 Read commands from standard input (:data:`sys.stdin`). If standard input is
126 a terminal, :option:`-i` is implied.
127
128 If this option is given, the first element of :data:`sys.argv` will be
Nick Coghlan31f63152008-04-30 14:23:36 +0000129 ``"-"`` and the current directory will be added to the start of
130 :data:`sys.path`.
131
132
133.. describe:: <script>
134
135 Execute the Python code contained in *script*, which must be a filesystem
136 path (absolute or relative) referring to either a Python file, a directory
137 containing a ``__main__.py`` file, or a zipfile containing a
138 ``__main__.py`` file.
139
140 If this option is given, the first element of :data:`sys.argv` will be the
141 script name as given on the command line.
142
143 If the script name refers directly to a Python file, the directory
144 containing that file is added to the start of :data:`sys.path`, and the
145 file is executed as the :mod:`__main__` module.
146
147 If the script name refers to a directory or zipfile, the script name is
148 added to the start of :data:`sys.path` and the ``__main__.py`` file in
149 that location is executed as the :mod:`__main__` module.
150
151 .. versionchanged:: 2.5
152 Directories and zipfiles containing a ``__main__.py`` file at the top
153 level are now considered valid Python scripts.
154
155If no interface option is given, :option:`-i` is implied, ``sys.argv[0]`` is
156an empty string (``""``) and the current directory will be added to the
157start of :data:`sys.path`.
Georg Brandl59d121a2007-10-20 18:08:14 +0000158
Georg Brandl14da8e82008-11-07 08:27:39 +0000159.. seealso:: :ref:`tut-invoking`
Georg Brandl59d121a2007-10-20 18:08:14 +0000160
161
Georg Brandl59d121a2007-10-20 18:08:14 +0000162Generic options
163~~~~~~~~~~~~~~~
164
165.. cmdoption:: -?
166 -h
167 --help
168
169 Print a short description of all command line options.
170
Nick Coghlan31f63152008-04-30 14:23:36 +0000171 .. versionchanged:: 2.5
Georg Brandl59d121a2007-10-20 18:08:14 +0000172 The ``--help`` variant.
173
174
175.. cmdoption:: -V
176 --version
177
178 Print the Python version number and exit. Example output could be::
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000179
Georg Brandl59d121a2007-10-20 18:08:14 +0000180 Python 2.5.1
181
Nick Coghlan31f63152008-04-30 14:23:36 +0000182 .. versionchanged:: 2.5
Georg Brandl59d121a2007-10-20 18:08:14 +0000183 The ``--version`` variant.
184
185
186Miscellaneous options
187~~~~~~~~~~~~~~~~~~~~~
188
Georg Brandl2da0fce2008-01-07 17:09:35 +0000189.. cmdoption:: -B
190
191 If given, Python won't try to write ``.pyc`` or ``.pyo`` files on the
192 import of source modules. See also :envvar:`PYTHONDONTWRITEBYTECODE`.
193
194 .. versionadded:: 2.6
195
196
Georg Brandl59d121a2007-10-20 18:08:14 +0000197.. cmdoption:: -d
198
199 Turn on parser debugging output (for wizards only, depending on compilation
200 options). See also :envvar:`PYTHONDEBUG`.
201
202
203.. cmdoption:: -E
204
Georg Brandlc5004f32007-10-20 19:05:45 +0000205 Ignore all :envvar:`PYTHON*` environment variables, e.g.
Georg Brandl35073332007-10-20 19:08:36 +0000206 :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set.
Georg Brandl59d121a2007-10-20 18:08:14 +0000207
Georg Brandlc5004f32007-10-20 19:05:45 +0000208 .. versionadded:: 2.2
Georg Brandl59d121a2007-10-20 18:08:14 +0000209
210
211.. cmdoption:: -i
212
213 When a script is passed as first argument or the :option:`-c` option is used,
214 enter interactive mode after executing the script or the command, even when
215 :data:`sys.stdin` does not appear to be a terminal. The
216 :envvar:`PYTHONSTARTUP` file is not read.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000217
Georg Brandl59d121a2007-10-20 18:08:14 +0000218 This can be useful to inspect global variables or a stack trace when a script
219 raises an exception. See also :envvar:`PYTHONINSPECT`.
220
221
222.. cmdoption:: -O
223
224 Turn on basic optimizations. This changes the filename extension for
Georg Brandl5e52db02007-10-21 10:45:46 +0000225 compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also
Georg Brandl59d121a2007-10-20 18:08:14 +0000226 :envvar:`PYTHONOPTIMIZE`.
227
228
229.. cmdoption:: -OO
230
231 Discard docstrings in addition to the :option:`-O` optimizations.
232
233
234.. cmdoption:: -Q <arg>
235
236 Division control. The argument must be one of the following:
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000237
Georg Brandl59d121a2007-10-20 18:08:14 +0000238 ``old``
239 division of int/int and long/long return an int or long (*default*)
240 ``new``
241 new division semantics, i.e. division of int/int and long/long returns a
242 float
243 ``warn``
244 old division semantics with a warning for int/int and long/long
245 ``warnall``
246 old division semantics with a warning for all uses of the division operator
247
248 .. seealso::
249 :file:`Tools/scripts/fixdiv.py`
250 for a use of ``warnall``
251
252 :pep:`238` -- Changing the division operator
253
254
Christian Heimesaf748c32008-05-06 22:41:46 +0000255.. cmdoption:: -s
256
257 Don't add user site directory to sys.path
258
259 .. versionadded:: 2.6
260
261 .. seealso::
262
263 :pep:`370` -- Per user site-packages directory
264
265
Georg Brandl59d121a2007-10-20 18:08:14 +0000266.. cmdoption:: -S
267
268 Disable the import of the module :mod:`site` and the site-dependent
269 manipulations of :data:`sys.path` that it entails.
270
271
272.. cmdoption:: -t
273
274 Issue a warning when a source file mixes tabs and spaces for indentation in a
275 way that makes it depend on the worth of a tab expressed in spaces. Issue an
276 error when the option is given twice (:option:`-tt`).
277
278
279.. cmdoption:: -u
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000280
Georg Brandl59d121a2007-10-20 18:08:14 +0000281 Force stdin, stdout and stderr to be totally unbuffered. On systems where it
282 matters, also put stdin, stdout and stderr in binary mode.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000283
Georg Brandlf4ef23f2007-10-30 17:51:18 +0000284 Note that there is internal buffering in :meth:`file.readlines` and
Georg Brandl59d121a2007-10-20 18:08:14 +0000285 :ref:`bltin-file-objects` (``for line in sys.stdin``) which is not influenced
286 by this option. To work around this, you will want to use
Georg Brandlf4ef23f2007-10-30 17:51:18 +0000287 :meth:`file.readline` inside a ``while 1:`` loop.
Georg Brandl59d121a2007-10-20 18:08:14 +0000288
289 See also :envvar:`PYTHONUNBUFFERED`.
290
291
Georg Brandl59d121a2007-10-20 18:08:14 +0000292.. cmdoption:: -v
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000293
Georg Brandl59d121a2007-10-20 18:08:14 +0000294 Print a message each time a module is initialized, showing the place
295 (filename or built-in module) from which it is loaded. When given twice
296 (:option:`-vv`), print a message for each file that is checked for when
297 searching for a module. Also provides information on module cleanup at exit.
298 See also :envvar:`PYTHONVERBOSE`.
299
300
301.. cmdoption:: -W arg
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000302
Georg Brandl59d121a2007-10-20 18:08:14 +0000303 Warning control. Python's warning machinery by default prints warning
304 messages to :data:`sys.stderr`. A typical warning message has the following
305 form::
306
307 file:line: category: message
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000308
Georg Brandl59d121a2007-10-20 18:08:14 +0000309 By default, each warning is printed once for each source line where it
310 occurs. This option controls how often warnings are printed.
311
312 Multiple :option:`-W` options may be given; when a warning matches more than
313 one option, the action for the last matching option is performed. Invalid
314 :option:`-W` options are ignored (though, a warning message is printed about
315 invalid options when the first warning is issued).
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000316
Georg Brandl59d121a2007-10-20 18:08:14 +0000317 Warnings can also be controlled from within a Python program using the
318 :mod:`warnings` module.
319
320 The simplest form of argument is one of the following action strings (or a
Brett Cannonf31d1a02010-01-01 01:44:57 +0000321 unique abbreviation) by themselves:
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000322
Georg Brandl59d121a2007-10-20 18:08:14 +0000323 ``ignore``
324 Ignore all warnings.
325 ``default``
326 Explicitly request the default behavior (printing each warning once per
327 source line).
328 ``all``
329 Print a warning each time it occurs (this may generate many messages if a
330 warning is triggered repeatedly for the same source line, such as inside a
331 loop).
332 ``module``
Georg Brandl5a85d5c2009-06-24 06:41:19 +0000333 Print each warning only the first time it occurs in each module.
Georg Brandl59d121a2007-10-20 18:08:14 +0000334 ``once``
335 Print each warning only the first time it occurs in the program.
336 ``error``
337 Raise an exception instead of printing a warning message.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000338
339 The full form of argument is::
340
Georg Brandl59d121a2007-10-20 18:08:14 +0000341 action:message:category:module:line
342
343 Here, *action* is as explained above but only applies to messages that match
344 the remaining fields. Empty fields match all values; trailing empty fields
345 may be omitted. The *message* field matches the start of the warning message
346 printed; this match is case-insensitive. The *category* field matches the
Andrew M. Kuchlingfced9082010-04-11 01:39:36 +0000347 warning category. This must be a class name; the match tests whether the
Georg Brandl59d121a2007-10-20 18:08:14 +0000348 actual warning category of the message is a subclass of the specified warning
349 category. The full class name must be given. The *module* field matches the
350 (fully-qualified) module name; this match is case-sensitive. The *line*
351 field matches the line number, where zero matches all line numbers and is
352 thus equivalent to an omitted line number.
353
354 .. seealso::
Nick Coghlan31f63152008-04-30 14:23:36 +0000355 :mod:`warnings` -- the warnings module
Georg Brandl59d121a2007-10-20 18:08:14 +0000356
357 :pep:`230` -- Warning framework
358
Philip Jenveyaebbaeb2010-04-06 23:24:45 +0000359 :envvar:`PYTHONWARNINGS`
360
Georg Brandl59d121a2007-10-20 18:08:14 +0000361
362.. cmdoption:: -x
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000363
Georg Brandl59d121a2007-10-20 18:08:14 +0000364 Skip the first line of the source, allowing use of non-Unix forms of
365 ``#!cmd``. This is intended for a DOS specific hack only.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000366
Georg Brandld91f8cf2009-04-27 15:10:44 +0000367 .. note:: The line numbers in error messages will be off by one.
Georg Brandl59d121a2007-10-20 18:08:14 +0000368
Georg Brandl59d121a2007-10-20 18:08:14 +0000369.. cmdoption:: -3
370
Benjamin Petersona9242892009-01-09 03:03:05 +0000371 Warn about Python 3.x incompatibilities which cannot be fixed trivially by
Benjamin Petersonfe8076e2009-01-09 02:53:35 +0000372 :ref:`2to3 <2to3-reference>`. Among these are:
Georg Brandl87983f22007-12-01 23:12:45 +0000373
374 * :meth:`dict.has_key`
375 * :func:`apply`
376 * :func:`callable`
377 * :func:`coerce`
378 * :func:`execfile`
379 * :func:`reduce`
380 * :func:`reload`
Georg Brandl59d121a2007-10-20 18:08:14 +0000381
Georg Brandl4425e7c2008-02-23 23:43:01 +0000382 Using these will emit a :exc:`DeprecationWarning`.
383
Georg Brandl59d121a2007-10-20 18:08:14 +0000384 .. versionadded:: 2.6
385
Barry Warsawb1e66ee2010-02-05 18:45:25 +0000386Options you shouldn't use
387~~~~~~~~~~~~~~~~~~~~~~~~~
Georg Brandl59d121a2007-10-20 18:08:14 +0000388
Barry Warsawb1e66ee2010-02-05 18:45:25 +0000389.. cmdoption:: -J
390
391 Reserved for use by Jython_.
392
393.. _Jython: http://jython.org
394
395.. cmdoption:: -U
396
397 Turns all string literals into unicodes globally. Do not be tempted to use
398 this option as it will probably break your world. It also produces
399 ``.pyc`` files with a different magic number than normal. Instead, you can
400 enable unicode literals on a per-module basis by using::
401
402 from __future__ import unicode_literals
403
404 at the top of the file. See :mod:`__future__` for details.
405
406.. cmdoption:: -X
407
408 Reserved for alternative implementations of Python to use for their own
409 purposes.
Georg Brandl59d121a2007-10-20 18:08:14 +0000410
Georg Brandl87983f22007-12-01 23:12:45 +0000411.. _using-on-envvars:
Georg Brandl59d121a2007-10-20 18:08:14 +0000412
413Environment variables
414---------------------
415
Georg Brandlaed6c662008-01-07 17:25:53 +0000416These environment variables influence Python's behavior.
417
Georg Brandl59d121a2007-10-20 18:08:14 +0000418.. envvar:: PYTHONHOME
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000419
Georg Brandl59d121a2007-10-20 18:08:14 +0000420 Change the location of the standard Python libraries. By default, the
Georg Brandl21297fa2008-01-20 21:10:08 +0000421 libraries are searched in :file:`{prefix}/lib/python{version}` and
422 :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and
Georg Brandl59d121a2007-10-20 18:08:14 +0000423 :file:`{exec_prefix}` are installation-dependent directories, both defaulting
424 to :file:`/usr/local`.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000425
Georg Brandl59d121a2007-10-20 18:08:14 +0000426 When :envvar:`PYTHONHOME` is set to a single directory, its value replaces
427 both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values
Georg Brandl21297fa2008-01-20 21:10:08 +0000428 for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`.
Georg Brandl59d121a2007-10-20 18:08:14 +0000429
430
431.. envvar:: PYTHONPATH
432
Georg Brandlaed6c662008-01-07 17:25:53 +0000433 Augment the default search path for module files. The format is the same as
Georg Brandl59d121a2007-10-20 18:08:14 +0000434 the shell's :envvar:`PATH`: one or more directory pathnames separated by
Georg Brandl9c065742008-03-05 19:31:44 +0000435 :data:`os.pathsep` (e.g. colons on Unix or semicolons on Windows).
436 Non-existent directories are silently ignored.
Nick Coghlan31f63152008-04-30 14:23:36 +0000437
438 In addition to normal directories, individual :envvar:`PYTHONPATH` entries
439 may refer to zipfiles containing pure Python modules (in either source or
440 compiled form). Extension modules cannot be imported from zipfiles.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000441
Georg Brandl59d121a2007-10-20 18:08:14 +0000442 The default search path is installation dependent, but generally begins with
Georg Brandlfc29f272009-01-02 20:25:14 +0000443 :file:`{prefix}/lib/python{version}` (see :envvar:`PYTHONHOME` above). It
Georg Brandl59d121a2007-10-20 18:08:14 +0000444 is *always* appended to :envvar:`PYTHONPATH`.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000445
Nick Coghlan31f63152008-04-30 14:23:36 +0000446 An additional directory will be inserted in the search path in front of
447 :envvar:`PYTHONPATH` as described above under
448 :ref:`using-on-interface-options`. The search path can be manipulated from
449 within a Python program as the variable :data:`sys.path`.
Georg Brandl59d121a2007-10-20 18:08:14 +0000450
451
452.. envvar:: PYTHONSTARTUP
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000453
Georg Brandl59d121a2007-10-20 18:08:14 +0000454 If this is the name of a readable file, the Python commands in that file are
455 executed before the first prompt is displayed in interactive mode. The file
Georg Brandla7395032007-10-21 12:15:05 +0000456 is executed in the same namespace where interactive commands are executed so
Georg Brandl59d121a2007-10-20 18:08:14 +0000457 that objects defined or imported in it can be used without qualification in
458 the interactive session. You can also change the prompts :data:`sys.ps1` and
459 :data:`sys.ps2` in this file.
460
461
462.. envvar:: PYTHONY2K
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000463
Georg Brandl59d121a2007-10-20 18:08:14 +0000464 Set this to a non-empty string to cause the :mod:`time` module to require
465 dates specified as strings to include 4-digit years, otherwise 2-digit years
466 are converted based on rules described in the :mod:`time` module
467 documentation.
468
469
470.. envvar:: PYTHONOPTIMIZE
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000471
Georg Brandl59d121a2007-10-20 18:08:14 +0000472 If this is set to a non-empty string it is equivalent to specifying the
473 :option:`-O` option. If set to an integer, it is equivalent to specifying
474 :option:`-O` multiple times.
475
476
477.. envvar:: PYTHONDEBUG
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000478
Georg Brandl59d121a2007-10-20 18:08:14 +0000479 If this is set to a non-empty string it is equivalent to specifying the
480 :option:`-d` option. If set to an integer, it is equivalent to specifying
481 :option:`-d` multiple times.
482
483
484.. envvar:: PYTHONINSPECT
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000485
Georg Brandl59d121a2007-10-20 18:08:14 +0000486 If this is set to a non-empty string it is equivalent to specifying the
487 :option:`-i` option.
488
Georg Brandlaed6c662008-01-07 17:25:53 +0000489 This variable can also be modified by Python code using :data:`os.environ`
490 to force inspect mode on program termination.
491
Georg Brandl59d121a2007-10-20 18:08:14 +0000492
493.. envvar:: PYTHONUNBUFFERED
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000494
Georg Brandl59d121a2007-10-20 18:08:14 +0000495 If this is set to a non-empty string it is equivalent to specifying the
496 :option:`-u` option.
497
498
499.. envvar:: PYTHONVERBOSE
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000500
Georg Brandl59d121a2007-10-20 18:08:14 +0000501 If this is set to a non-empty string it is equivalent to specifying the
502 :option:`-v` option. If set to an integer, it is equivalent to specifying
503 :option:`-v` multiple times.
504
505
506.. envvar:: PYTHONCASEOK
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000507
Georg Brandl59d121a2007-10-20 18:08:14 +0000508 If this is set, Python ignores case in :keyword:`import` statements. This
509 only works on Windows.
510
Georg Brandl2da0fce2008-01-07 17:09:35 +0000511
512.. envvar:: PYTHONDONTWRITEBYTECODE
513
Georg Brandlaed6c662008-01-07 17:25:53 +0000514 If this is set, Python won't try to write ``.pyc`` or ``.pyo`` files on the
Georg Brandl2da0fce2008-01-07 17:09:35 +0000515 import of source modules.
516
517 .. versionadded:: 2.6
Georg Brandlaed6c662008-01-07 17:25:53 +0000518
Martin v. Löwis99815892008-06-01 07:20:46 +0000519.. envvar:: PYTHONIOENCODING
520
521 Overrides the encoding used for stdin/stdout/stderr, in the syntax
Georg Brandld9875452008-06-11 17:57:44 +0000522 ``encodingname:errorhandler``. The ``:errorhandler`` part is optional and
523 has the same meaning as in :func:`str.encode`.
Martin v. Löwis99815892008-06-01 07:20:46 +0000524
525 .. versionadded:: 2.6
526
Georg Brandlaed6c662008-01-07 17:25:53 +0000527
Christian Heimesaf748c32008-05-06 22:41:46 +0000528.. envvar:: PYTHONNOUSERSITE
529
530 If this is set, Python won't add the user site directory to sys.path
531
532 .. versionadded:: 2.6
533
534 .. seealso::
535
536 :pep:`370` -- Per user site-packages directory
537
538
539.. envvar:: PYTHONUSERBASE
540
541 Sets the base directory for the user site directory
542
543 .. versionadded:: 2.6
544
545 .. seealso::
546
547 :pep:`370` -- Per user site-packages directory
548
549
Georg Brandlaed6c662008-01-07 17:25:53 +0000550.. envvar:: PYTHONEXECUTABLE
551
552 If this environment variable is set, ``sys.argv[0]`` will be set to its
553 value instead of the value got through the C runtime. Only works on
Georg Brandl9af94982008-09-13 17:41:16 +0000554 Mac OS X.
Georg Brandlaed6c662008-01-07 17:25:53 +0000555
Philip Jenveyaebbaeb2010-04-06 23:24:45 +0000556.. envvar:: PYTHONWARNINGS
557
Andrew M. Kuchlingfced9082010-04-11 01:39:36 +0000558 This is equivalent to the :option:`-W` option. If set to a comma
Philip Jenveyaebbaeb2010-04-06 23:24:45 +0000559 separated string, it is equivalent to specifying :option:`-W` multiple
560 times.
561
Georg Brandlaed6c662008-01-07 17:25:53 +0000562
563Debug-mode variables
Georg Brandl61d28862008-01-07 18:57:03 +0000564~~~~~~~~~~~~~~~~~~~~
Georg Brandlaed6c662008-01-07 17:25:53 +0000565
566Setting these variables only has an effect in a debug build of Python, that is,
Georg Brandl61d28862008-01-07 18:57:03 +0000567if Python was configured with the :option:`--with-pydebug` build option.
Georg Brandlaed6c662008-01-07 17:25:53 +0000568
569.. envvar:: PYTHONTHREADDEBUG
570
Nick Coghlan31f63152008-04-30 14:23:36 +0000571 If set, Python will print threading debug info.
Georg Brandlaed6c662008-01-07 17:25:53 +0000572
573 .. versionchanged:: 2.6
574 Previously, this variable was called ``THREADDEBUG``.
575
576.. envvar:: PYTHONDUMPREFS
577
578 If set, Python will dump objects and reference counts still alive after
579 shutting down the interpreter.
580
581
582.. envvar:: PYTHONMALLOCSTATS
583
584 If set, Python will print memory allocation statistics every time a new
585 object arena is created, and on shutdown.
586