Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 1 | .. highlightlang:: none |
| 2 | |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 3 | .. _using-on-general: |
| 4 | |
Georg Brandl | 1cddfed | 2007-10-20 18:33:20 +0000 | [diff] [blame] | 5 | Command line and environment |
| 6 | ============================ |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 7 | |
| 8 | The CPython interpreter scans the command line and the environment for various |
| 9 | settings. |
| 10 | |
| 11 | .. note:: |
| 12 | |
Georg Brandl | cbcfe4f | 2007-12-03 19:57:02 +0000 | [diff] [blame] | 13 | Other implementations' command line schemes may differ. See |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 14 | :ref:`implementations` for further resources. |
| 15 | |
| 16 | |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 17 | .. _using-on-cmdline: |
| 18 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 19 | Command line |
| 20 | ------------ |
| 21 | |
| 22 | When invoking Python, you may specify any of these options:: |
| 23 | |
| 24 | python [-dEiOQStuUvxX3?] [-c command | -m module-name | script | - ] [args] |
| 25 | |
| 26 | The most common use case is, of course, a simple invocation of a script:: |
| 27 | |
| 28 | python myscript.py |
| 29 | |
| 30 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 31 | .. _using-on-interface-options: |
| 32 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 33 | Interface options |
| 34 | ~~~~~~~~~~~~~~~~~ |
| 35 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 36 | The interpreter interface resembles that of the UNIX shell, but provides some |
| 37 | additional methods of invocation: |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 38 | |
| 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 Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 44 | * When called with a directory name argument, it reads and executes an |
| 45 | appropriately named script from that directory. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 46 | * 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 Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 49 | * When called with ``-m module-name``, the given module is located on the |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 50 | Python module path and executed as a script. |
| 51 | |
| 52 | In non-interactive mode, the entire input is parsed before it is executed. |
| 53 | |
| 54 | An interface option terminates the list of options consumed by the interpreter, |
| 55 | all consecutive arguments will end up in :data:`sys.argv` -- note that the first |
| 56 | element, subscript zero (``sys.argv[0]``), is a string reflecting the program's |
| 57 | source. |
| 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. |
| 64 | |
| 65 | If this option is given, the first element of :data:`sys.argv` will be |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 66 | ``"-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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 69 | |
| 70 | |
| 71 | .. cmdoption:: -m <module-name> |
| 72 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 73 | Search :data:`sys.path` for the named module and execute its contents as |
| 74 | the :mod:`__main__` module. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 75 | |
| 76 | Since the argument is a *module* name, you must not give a file extension |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 77 | (``.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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 80 | |
| 81 | .. note:: |
| 82 | |
| 83 | This option cannot be used with builtin modules and extension modules |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 84 | 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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 87 | |
| 88 | If this option is given, the first element of :data:`sys.argv` will be the |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 89 | 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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 91 | |
| 92 | 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 | |
| 98 | .. seealso:: |
| 99 | :func:`runpy.run_module` |
| 100 | The actual implementation of this feature. |
| 101 | |
| 102 | :pep:`338` -- Executing modules as scripts |
| 103 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 104 | .. versionadded:: 2.4 |
| 105 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 106 | .. versionchanged:: 2.5 |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 107 | The named module can now be located inside a package. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 108 | |
| 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 Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 116 | ``"-"`` 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 | |
| 142 | If no interface option is given, :option:`-i` is implied, ``sys.argv[0]`` is |
| 143 | an empty string (``""``) and the current directory will be added to the |
| 144 | start of :data:`sys.path`. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 145 | |
| 146 | .. seealso:: |
| 147 | :ref:`tut-invoking` |
| 148 | |
| 149 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 150 | Generic options |
| 151 | ~~~~~~~~~~~~~~~ |
| 152 | |
| 153 | .. cmdoption:: -? |
| 154 | -h |
| 155 | --help |
| 156 | |
| 157 | Print a short description of all command line options. |
| 158 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 159 | .. versionchanged:: 2.5 |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 160 | The ``--help`` variant. |
| 161 | |
| 162 | |
| 163 | .. cmdoption:: -V |
| 164 | --version |
| 165 | |
| 166 | Print the Python version number and exit. Example output could be:: |
| 167 | |
| 168 | Python 2.5.1 |
| 169 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 170 | .. versionchanged:: 2.5 |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 171 | The ``--version`` variant. |
| 172 | |
| 173 | |
| 174 | Miscellaneous options |
| 175 | ~~~~~~~~~~~~~~~~~~~~~ |
| 176 | |
Georg Brandl | 2da0fce | 2008-01-07 17:09:35 +0000 | [diff] [blame] | 177 | .. 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 | |
| 182 | .. versionadded:: 2.6 |
| 183 | |
| 184 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 185 | .. cmdoption:: -d |
| 186 | |
| 187 | Turn on parser debugging output (for wizards only, depending on compilation |
| 188 | options). See also :envvar:`PYTHONDEBUG`. |
| 189 | |
| 190 | |
| 191 | .. cmdoption:: -E |
| 192 | |
Georg Brandl | c5004f3 | 2007-10-20 19:05:45 +0000 | [diff] [blame] | 193 | Ignore all :envvar:`PYTHON*` environment variables, e.g. |
Georg Brandl | 3507333 | 2007-10-20 19:08:36 +0000 | [diff] [blame] | 194 | :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 195 | |
Georg Brandl | c5004f3 | 2007-10-20 19:05:45 +0000 | [diff] [blame] | 196 | .. versionadded:: 2.2 |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 197 | |
| 198 | |
| 199 | .. cmdoption:: -i |
| 200 | |
| 201 | When a script is passed as first argument or the :option:`-c` option is used, |
| 202 | enter interactive mode after executing the script or the command, even when |
| 203 | :data:`sys.stdin` does not appear to be a terminal. The |
| 204 | :envvar:`PYTHONSTARTUP` file is not read. |
| 205 | |
| 206 | This can be useful to inspect global variables or a stack trace when a script |
| 207 | raises an exception. See also :envvar:`PYTHONINSPECT`. |
| 208 | |
| 209 | |
| 210 | .. cmdoption:: -O |
| 211 | |
| 212 | Turn on basic optimizations. This changes the filename extension for |
Georg Brandl | 5e52db0 | 2007-10-21 10:45:46 +0000 | [diff] [blame] | 213 | compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 214 | :envvar:`PYTHONOPTIMIZE`. |
| 215 | |
| 216 | |
| 217 | .. cmdoption:: -OO |
| 218 | |
| 219 | Discard docstrings in addition to the :option:`-O` optimizations. |
| 220 | |
| 221 | |
| 222 | .. cmdoption:: -Q <arg> |
| 223 | |
| 224 | Division control. The argument must be one of the following: |
| 225 | |
| 226 | ``old`` |
| 227 | division of int/int and long/long return an int or long (*default*) |
| 228 | ``new`` |
| 229 | new division semantics, i.e. division of int/int and long/long returns a |
| 230 | float |
| 231 | ``warn`` |
| 232 | old division semantics with a warning for int/int and long/long |
| 233 | ``warnall`` |
| 234 | old division semantics with a warning for all uses of the division operator |
| 235 | |
| 236 | .. seealso:: |
| 237 | :file:`Tools/scripts/fixdiv.py` |
| 238 | for a use of ``warnall`` |
| 239 | |
| 240 | :pep:`238` -- Changing the division operator |
| 241 | |
| 242 | |
| 243 | .. cmdoption:: -S |
| 244 | |
| 245 | Disable the import of the module :mod:`site` and the site-dependent |
| 246 | manipulations of :data:`sys.path` that it entails. |
| 247 | |
| 248 | |
| 249 | .. cmdoption:: -t |
| 250 | |
| 251 | Issue a warning when a source file mixes tabs and spaces for indentation in a |
| 252 | way that makes it depend on the worth of a tab expressed in spaces. Issue an |
| 253 | error when the option is given twice (:option:`-tt`). |
| 254 | |
| 255 | |
| 256 | .. cmdoption:: -u |
| 257 | |
| 258 | Force stdin, stdout and stderr to be totally unbuffered. On systems where it |
| 259 | matters, also put stdin, stdout and stderr in binary mode. |
| 260 | |
Georg Brandl | f4ef23f | 2007-10-30 17:51:18 +0000 | [diff] [blame] | 261 | Note that there is internal buffering in :meth:`file.readlines` and |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 262 | :ref:`bltin-file-objects` (``for line in sys.stdin``) which is not influenced |
| 263 | by this option. To work around this, you will want to use |
Georg Brandl | f4ef23f | 2007-10-30 17:51:18 +0000 | [diff] [blame] | 264 | :meth:`file.readline` inside a ``while 1:`` loop. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 265 | |
| 266 | See also :envvar:`PYTHONUNBUFFERED`. |
| 267 | |
| 268 | |
| 269 | .. XXX should the -U option be documented? |
| 270 | |
| 271 | .. cmdoption:: -v |
| 272 | |
| 273 | Print a message each time a module is initialized, showing the place |
| 274 | (filename or built-in module) from which it is loaded. When given twice |
| 275 | (:option:`-vv`), print a message for each file that is checked for when |
| 276 | searching for a module. Also provides information on module cleanup at exit. |
| 277 | See also :envvar:`PYTHONVERBOSE`. |
| 278 | |
| 279 | |
| 280 | .. cmdoption:: -W arg |
| 281 | |
| 282 | Warning control. Python's warning machinery by default prints warning |
| 283 | messages to :data:`sys.stderr`. A typical warning message has the following |
| 284 | form:: |
| 285 | |
| 286 | file:line: category: message |
| 287 | |
| 288 | By default, each warning is printed once for each source line where it |
| 289 | occurs. This option controls how often warnings are printed. |
| 290 | |
| 291 | Multiple :option:`-W` options may be given; when a warning matches more than |
| 292 | one option, the action for the last matching option is performed. Invalid |
| 293 | :option:`-W` options are ignored (though, a warning message is printed about |
| 294 | invalid options when the first warning is issued). |
| 295 | |
| 296 | Warnings can also be controlled from within a Python program using the |
| 297 | :mod:`warnings` module. |
| 298 | |
| 299 | The simplest form of argument is one of the following action strings (or a |
| 300 | unique abbreviation): |
| 301 | |
| 302 | ``ignore`` |
| 303 | Ignore all warnings. |
| 304 | ``default`` |
| 305 | Explicitly request the default behavior (printing each warning once per |
| 306 | source line). |
| 307 | ``all`` |
| 308 | Print a warning each time it occurs (this may generate many messages if a |
| 309 | warning is triggered repeatedly for the same source line, such as inside a |
| 310 | loop). |
| 311 | ``module`` |
| 312 | Print each warning only only the first time it occurs in each module. |
| 313 | ``once`` |
| 314 | Print each warning only the first time it occurs in the program. |
| 315 | ``error`` |
| 316 | Raise an exception instead of printing a warning message. |
| 317 | |
| 318 | The full form of argument is:: |
| 319 | |
| 320 | action:message:category:module:line |
| 321 | |
| 322 | Here, *action* is as explained above but only applies to messages that match |
| 323 | the remaining fields. Empty fields match all values; trailing empty fields |
| 324 | may be omitted. The *message* field matches the start of the warning message |
| 325 | printed; this match is case-insensitive. The *category* field matches the |
| 326 | warning category. This must be a class name; the match test whether the |
| 327 | actual warning category of the message is a subclass of the specified warning |
| 328 | category. The full class name must be given. The *module* field matches the |
| 329 | (fully-qualified) module name; this match is case-sensitive. The *line* |
| 330 | field matches the line number, where zero matches all line numbers and is |
| 331 | thus equivalent to an omitted line number. |
| 332 | |
| 333 | .. seealso:: |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 334 | :mod:`warnings` -- the warnings module |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 335 | |
| 336 | :pep:`230` -- Warning framework |
| 337 | |
| 338 | |
| 339 | .. cmdoption:: -x |
| 340 | |
| 341 | Skip the first line of the source, allowing use of non-Unix forms of |
| 342 | ``#!cmd``. This is intended for a DOS specific hack only. |
| 343 | |
| 344 | .. warning:: The line numbers in error messages will be off by one! |
| 345 | |
| 346 | |
| 347 | .. cmdoption:: -3 |
| 348 | |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 349 | Warn about Python 3.x incompatibilities. Among these are: |
| 350 | |
| 351 | * :meth:`dict.has_key` |
| 352 | * :func:`apply` |
| 353 | * :func:`callable` |
| 354 | * :func:`coerce` |
| 355 | * :func:`execfile` |
| 356 | * :func:`reduce` |
| 357 | * :func:`reload` |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 358 | |
Georg Brandl | 4425e7c | 2008-02-23 23:43:01 +0000 | [diff] [blame] | 359 | Using these will emit a :exc:`DeprecationWarning`. |
| 360 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 361 | .. versionadded:: 2.6 |
| 362 | |
| 363 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 364 | |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 365 | .. _using-on-envvars: |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 366 | |
| 367 | Environment variables |
| 368 | --------------------- |
| 369 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 370 | These environment variables influence Python's behavior. |
| 371 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 372 | .. envvar:: PYTHONHOME |
| 373 | |
| 374 | Change the location of the standard Python libraries. By default, the |
Georg Brandl | 21297fa | 2008-01-20 21:10:08 +0000 | [diff] [blame] | 375 | libraries are searched in :file:`{prefix}/lib/python{version}` and |
| 376 | :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 377 | :file:`{exec_prefix}` are installation-dependent directories, both defaulting |
| 378 | to :file:`/usr/local`. |
| 379 | |
| 380 | When :envvar:`PYTHONHOME` is set to a single directory, its value replaces |
| 381 | both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values |
Georg Brandl | 21297fa | 2008-01-20 21:10:08 +0000 | [diff] [blame] | 382 | for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 383 | |
| 384 | |
| 385 | .. envvar:: PYTHONPATH |
| 386 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 387 | Augment the default search path for module files. The format is the same as |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 388 | the shell's :envvar:`PATH`: one or more directory pathnames separated by |
Georg Brandl | 9c06574 | 2008-03-05 19:31:44 +0000 | [diff] [blame] | 389 | :data:`os.pathsep` (e.g. colons on Unix or semicolons on Windows). |
| 390 | Non-existent directories are silently ignored. |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 391 | |
| 392 | In addition to normal directories, individual :envvar:`PYTHONPATH` entries |
| 393 | may refer to zipfiles containing pure Python modules (in either source or |
| 394 | compiled form). Extension modules cannot be imported from zipfiles. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 395 | |
| 396 | The default search path is installation dependent, but generally begins with |
Georg Brandl | 21297fa | 2008-01-20 21:10:08 +0000 | [diff] [blame] | 397 | :file:`{prefix}/lib/python{version}`` (see :envvar:`PYTHONHOME` above). It |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 398 | is *always* appended to :envvar:`PYTHONPATH`. |
| 399 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 400 | An additional directory will be inserted in the search path in front of |
| 401 | :envvar:`PYTHONPATH` as described above under |
| 402 | :ref:`using-on-interface-options`. The search path can be manipulated from |
| 403 | within a Python program as the variable :data:`sys.path`. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 404 | |
| 405 | |
| 406 | .. envvar:: PYTHONSTARTUP |
| 407 | |
| 408 | If this is the name of a readable file, the Python commands in that file are |
| 409 | executed before the first prompt is displayed in interactive mode. The file |
Georg Brandl | a739503 | 2007-10-21 12:15:05 +0000 | [diff] [blame] | 410 | is executed in the same namespace where interactive commands are executed so |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 411 | that objects defined or imported in it can be used without qualification in |
| 412 | the interactive session. You can also change the prompts :data:`sys.ps1` and |
| 413 | :data:`sys.ps2` in this file. |
| 414 | |
| 415 | |
| 416 | .. envvar:: PYTHONY2K |
| 417 | |
| 418 | Set this to a non-empty string to cause the :mod:`time` module to require |
| 419 | dates specified as strings to include 4-digit years, otherwise 2-digit years |
| 420 | are converted based on rules described in the :mod:`time` module |
| 421 | documentation. |
| 422 | |
| 423 | |
| 424 | .. envvar:: PYTHONOPTIMIZE |
| 425 | |
| 426 | If this is set to a non-empty string it is equivalent to specifying the |
| 427 | :option:`-O` option. If set to an integer, it is equivalent to specifying |
| 428 | :option:`-O` multiple times. |
| 429 | |
| 430 | |
| 431 | .. envvar:: PYTHONDEBUG |
| 432 | |
| 433 | If this is set to a non-empty string it is equivalent to specifying the |
| 434 | :option:`-d` option. If set to an integer, it is equivalent to specifying |
| 435 | :option:`-d` multiple times. |
| 436 | |
| 437 | |
| 438 | .. envvar:: PYTHONINSPECT |
| 439 | |
| 440 | If this is set to a non-empty string it is equivalent to specifying the |
| 441 | :option:`-i` option. |
| 442 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 443 | This variable can also be modified by Python code using :data:`os.environ` |
| 444 | to force inspect mode on program termination. |
| 445 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 446 | |
| 447 | .. envvar:: PYTHONUNBUFFERED |
| 448 | |
| 449 | If this is set to a non-empty string it is equivalent to specifying the |
| 450 | :option:`-u` option. |
| 451 | |
| 452 | |
| 453 | .. envvar:: PYTHONVERBOSE |
| 454 | |
| 455 | If this is set to a non-empty string it is equivalent to specifying the |
| 456 | :option:`-v` option. If set to an integer, it is equivalent to specifying |
| 457 | :option:`-v` multiple times. |
| 458 | |
| 459 | |
| 460 | .. envvar:: PYTHONCASEOK |
| 461 | |
| 462 | If this is set, Python ignores case in :keyword:`import` statements. This |
| 463 | only works on Windows. |
| 464 | |
Georg Brandl | 2da0fce | 2008-01-07 17:09:35 +0000 | [diff] [blame] | 465 | |
| 466 | .. envvar:: PYTHONDONTWRITEBYTECODE |
| 467 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 468 | If this is set, Python won't try to write ``.pyc`` or ``.pyo`` files on the |
Georg Brandl | 2da0fce | 2008-01-07 17:09:35 +0000 | [diff] [blame] | 469 | import of source modules. |
| 470 | |
| 471 | .. versionadded:: 2.6 |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 472 | |
| 473 | |
| 474 | .. envvar:: PYTHONEXECUTABLE |
| 475 | |
| 476 | If this environment variable is set, ``sys.argv[0]`` will be set to its |
| 477 | value instead of the value got through the C runtime. Only works on |
| 478 | MacOS X. |
| 479 | |
| 480 | |
| 481 | Debug-mode variables |
Georg Brandl | 61d2886 | 2008-01-07 18:57:03 +0000 | [diff] [blame] | 482 | ~~~~~~~~~~~~~~~~~~~~ |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 483 | |
| 484 | Setting these variables only has an effect in a debug build of Python, that is, |
Georg Brandl | 61d2886 | 2008-01-07 18:57:03 +0000 | [diff] [blame] | 485 | if Python was configured with the :option:`--with-pydebug` build option. |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 486 | |
| 487 | .. envvar:: PYTHONTHREADDEBUG |
| 488 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 489 | If set, Python will print threading debug info. |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 490 | |
| 491 | .. versionchanged:: 2.6 |
| 492 | Previously, this variable was called ``THREADDEBUG``. |
| 493 | |
| 494 | .. envvar:: PYTHONDUMPREFS |
| 495 | |
| 496 | If set, Python will dump objects and reference counts still alive after |
| 497 | shutting down the interpreter. |
| 498 | |
| 499 | |
| 500 | .. envvar:: PYTHONMALLOCSTATS |
| 501 | |
| 502 | If set, Python will print memory allocation statistics every time a new |
| 503 | object arena is created, and on shutdown. |
| 504 | |