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 | |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 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 | |
Christian Heimes | af748c3 | 2008-05-06 22:41:46 +0000 | [diff] [blame] | 24 | python [-dEiOQsStuUvxX3?] [-c command | -m module-name | script | - ] [args] |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 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. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 64 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 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 | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 75 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 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 | |
Nick Coghlan | d39600e | 2009-02-08 01:26:34 +0000 | [diff] [blame] | 81 | 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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 87 | .. note:: |
| 88 | |
| 89 | This option cannot be used with builtin modules and extension modules |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 90 | 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 93 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 94 | 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] | 95 | 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 97 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 98 | 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 104 | .. seealso:: |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 105 | :func:`runpy.run_module` |
Nick Coghlan | d39600e | 2009-02-08 01:26:34 +0000 | [diff] [blame] | 106 | Equivalent functionality directly available to Python code |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 107 | |
| 108 | :pep:`338` -- Executing modules as scripts |
| 109 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 110 | .. versionadded:: 2.4 |
| 111 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 112 | .. versionchanged:: 2.5 |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 113 | The named module can now be located inside a package. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 114 | |
Nick Coghlan | d39600e | 2009-02-08 01:26:34 +0000 | [diff] [blame] | 115 | .. versionchanged:: 2.7 |
| 116 | Supply the package name to run a ``__main__`` submodule. |
| 117 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 118 | |
| 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 Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 125 | ``"-"`` 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 | |
| 151 | If no interface option is given, :option:`-i` is implied, ``sys.argv[0]`` is |
| 152 | an empty string (``""``) and the current directory will be added to the |
| 153 | start of :data:`sys.path`. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 154 | |
Georg Brandl | 14da8e8 | 2008-11-07 08:27:39 +0000 | [diff] [blame] | 155 | .. seealso:: :ref:`tut-invoking` |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 156 | |
| 157 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 158 | Generic options |
| 159 | ~~~~~~~~~~~~~~~ |
| 160 | |
| 161 | .. cmdoption:: -? |
| 162 | -h |
| 163 | --help |
| 164 | |
| 165 | Print a short description of all command line options. |
| 166 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 167 | .. versionchanged:: 2.5 |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 168 | The ``--help`` variant. |
| 169 | |
| 170 | |
| 171 | .. cmdoption:: -V |
| 172 | --version |
| 173 | |
| 174 | Print the Python version number and exit. Example output could be:: |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 175 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 176 | Python 2.5.1 |
| 177 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 178 | .. versionchanged:: 2.5 |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 179 | The ``--version`` variant. |
| 180 | |
| 181 | |
| 182 | Miscellaneous options |
| 183 | ~~~~~~~~~~~~~~~~~~~~~ |
| 184 | |
Georg Brandl | 2da0fce | 2008-01-07 17:09:35 +0000 | [diff] [blame] | 185 | .. 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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 193 | .. 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 Brandl | c5004f3 | 2007-10-20 19:05:45 +0000 | [diff] [blame] | 201 | Ignore all :envvar:`PYTHON*` environment variables, e.g. |
Georg Brandl | 3507333 | 2007-10-20 19:08:36 +0000 | [diff] [blame] | 202 | :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 203 | |
Georg Brandl | c5004f3 | 2007-10-20 19:05:45 +0000 | [diff] [blame] | 204 | .. versionadded:: 2.2 |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 205 | |
| 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 213 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 214 | 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 Brandl | 5e52db0 | 2007-10-21 10:45:46 +0000 | [diff] [blame] | 221 | compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 222 | :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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 233 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 234 | ``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 Heimes | af748c3 | 2008-05-06 22:41:46 +0000 | [diff] [blame] | 251 | .. 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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 262 | .. 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 276 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 277 | 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 279 | |
Georg Brandl | f4ef23f | 2007-10-30 17:51:18 +0000 | [diff] [blame] | 280 | Note that there is internal buffering in :meth:`file.readlines` and |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 281 | :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 Brandl | f4ef23f | 2007-10-30 17:51:18 +0000 | [diff] [blame] | 283 | :meth:`file.readline` inside a ``while 1:`` loop. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 284 | |
| 285 | See also :envvar:`PYTHONUNBUFFERED`. |
| 286 | |
| 287 | |
| 288 | .. XXX should the -U option be documented? |
| 289 | |
| 290 | .. cmdoption:: -v |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 291 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 292 | Print a message each time a module is initialized, showing the place |
| 293 | (filename or built-in module) from which it is loaded. When given twice |
| 294 | (:option:`-vv`), print a message for each file that is checked for when |
| 295 | searching for a module. Also provides information on module cleanup at exit. |
| 296 | See also :envvar:`PYTHONVERBOSE`. |
| 297 | |
| 298 | |
| 299 | .. cmdoption:: -W arg |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 300 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 301 | Warning control. Python's warning machinery by default prints warning |
| 302 | messages to :data:`sys.stderr`. A typical warning message has the following |
| 303 | form:: |
| 304 | |
| 305 | file:line: category: message |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 306 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 307 | By default, each warning is printed once for each source line where it |
| 308 | occurs. This option controls how often warnings are printed. |
| 309 | |
| 310 | Multiple :option:`-W` options may be given; when a warning matches more than |
| 311 | one option, the action for the last matching option is performed. Invalid |
| 312 | :option:`-W` options are ignored (though, a warning message is printed about |
| 313 | invalid options when the first warning is issued). |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 314 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 315 | Warnings can also be controlled from within a Python program using the |
| 316 | :mod:`warnings` module. |
| 317 | |
| 318 | The simplest form of argument is one of the following action strings (or a |
| 319 | unique abbreviation): |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 320 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 321 | ``ignore`` |
| 322 | Ignore all warnings. |
| 323 | ``default`` |
| 324 | Explicitly request the default behavior (printing each warning once per |
| 325 | source line). |
| 326 | ``all`` |
| 327 | Print a warning each time it occurs (this may generate many messages if a |
| 328 | warning is triggered repeatedly for the same source line, such as inside a |
| 329 | loop). |
| 330 | ``module`` |
| 331 | Print each warning only only the first time it occurs in each module. |
| 332 | ``once`` |
| 333 | Print each warning only the first time it occurs in the program. |
| 334 | ``error`` |
| 335 | Raise an exception instead of printing a warning message. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 336 | |
| 337 | The full form of argument is:: |
| 338 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 339 | action:message:category:module:line |
| 340 | |
| 341 | Here, *action* is as explained above but only applies to messages that match |
| 342 | the remaining fields. Empty fields match all values; trailing empty fields |
| 343 | may be omitted. The *message* field matches the start of the warning message |
| 344 | printed; this match is case-insensitive. The *category* field matches the |
| 345 | warning category. This must be a class name; the match test whether the |
| 346 | actual warning category of the message is a subclass of the specified warning |
| 347 | category. The full class name must be given. The *module* field matches the |
| 348 | (fully-qualified) module name; this match is case-sensitive. The *line* |
| 349 | field matches the line number, where zero matches all line numbers and is |
| 350 | thus equivalent to an omitted line number. |
| 351 | |
| 352 | .. seealso:: |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 353 | :mod:`warnings` -- the warnings module |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 354 | |
| 355 | :pep:`230` -- Warning framework |
| 356 | |
| 357 | |
| 358 | .. cmdoption:: -x |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 359 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 360 | 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 362 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 363 | .. warning:: The line numbers in error messages will be off by one! |
| 364 | |
| 365 | |
| 366 | .. cmdoption:: -3 |
| 367 | |
Benjamin Peterson | a924289 | 2009-01-09 03:03:05 +0000 | [diff] [blame] | 368 | Warn about Python 3.x incompatibilities which cannot be fixed trivially by |
Benjamin Peterson | fe8076e | 2009-01-09 02:53:35 +0000 | [diff] [blame] | 369 | :ref:`2to3 <2to3-reference>`. Among these are: |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 370 | |
| 371 | * :meth:`dict.has_key` |
| 372 | * :func:`apply` |
| 373 | * :func:`callable` |
| 374 | * :func:`coerce` |
| 375 | * :func:`execfile` |
| 376 | * :func:`reduce` |
| 377 | * :func:`reload` |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 378 | |
Georg Brandl | 4425e7c | 2008-02-23 23:43:01 +0000 | [diff] [blame] | 379 | Using these will emit a :exc:`DeprecationWarning`. |
| 380 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 381 | .. versionadded:: 2.6 |
| 382 | |
| 383 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 384 | |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 385 | .. _using-on-envvars: |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 386 | |
| 387 | Environment variables |
| 388 | --------------------- |
| 389 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 390 | These environment variables influence Python's behavior. |
| 391 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 392 | .. envvar:: PYTHONHOME |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 393 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 394 | Change the location of the standard Python libraries. By default, the |
Georg Brandl | 21297fa | 2008-01-20 21:10:08 +0000 | [diff] [blame] | 395 | libraries are searched in :file:`{prefix}/lib/python{version}` and |
| 396 | :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 397 | :file:`{exec_prefix}` are installation-dependent directories, both defaulting |
| 398 | to :file:`/usr/local`. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 399 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 400 | When :envvar:`PYTHONHOME` is set to a single directory, its value replaces |
| 401 | both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values |
Georg Brandl | 21297fa | 2008-01-20 21:10:08 +0000 | [diff] [blame] | 402 | for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 403 | |
| 404 | |
| 405 | .. envvar:: PYTHONPATH |
| 406 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 407 | 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] | 408 | the shell's :envvar:`PATH`: one or more directory pathnames separated by |
Georg Brandl | 9c06574 | 2008-03-05 19:31:44 +0000 | [diff] [blame] | 409 | :data:`os.pathsep` (e.g. colons on Unix or semicolons on Windows). |
| 410 | Non-existent directories are silently ignored. |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 411 | |
| 412 | In addition to normal directories, individual :envvar:`PYTHONPATH` entries |
| 413 | may refer to zipfiles containing pure Python modules (in either source or |
| 414 | compiled form). Extension modules cannot be imported from zipfiles. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 415 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 416 | The default search path is installation dependent, but generally begins with |
Georg Brandl | fc29f27 | 2009-01-02 20:25:14 +0000 | [diff] [blame] | 417 | :file:`{prefix}/lib/python{version}` (see :envvar:`PYTHONHOME` above). It |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 418 | is *always* appended to :envvar:`PYTHONPATH`. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 419 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 420 | An additional directory will be inserted in the search path in front of |
| 421 | :envvar:`PYTHONPATH` as described above under |
| 422 | :ref:`using-on-interface-options`. The search path can be manipulated from |
| 423 | within a Python program as the variable :data:`sys.path`. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 424 | |
| 425 | |
| 426 | .. envvar:: PYTHONSTARTUP |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 427 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 428 | If this is the name of a readable file, the Python commands in that file are |
| 429 | executed before the first prompt is displayed in interactive mode. The file |
Georg Brandl | a739503 | 2007-10-21 12:15:05 +0000 | [diff] [blame] | 430 | is executed in the same namespace where interactive commands are executed so |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 431 | that objects defined or imported in it can be used without qualification in |
| 432 | the interactive session. You can also change the prompts :data:`sys.ps1` and |
| 433 | :data:`sys.ps2` in this file. |
| 434 | |
| 435 | |
| 436 | .. envvar:: PYTHONY2K |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 437 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 438 | Set this to a non-empty string to cause the :mod:`time` module to require |
| 439 | dates specified as strings to include 4-digit years, otherwise 2-digit years |
| 440 | are converted based on rules described in the :mod:`time` module |
| 441 | documentation. |
| 442 | |
| 443 | |
| 444 | .. envvar:: PYTHONOPTIMIZE |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 445 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 446 | If this is set to a non-empty string it is equivalent to specifying the |
| 447 | :option:`-O` option. If set to an integer, it is equivalent to specifying |
| 448 | :option:`-O` multiple times. |
| 449 | |
| 450 | |
| 451 | .. envvar:: PYTHONDEBUG |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 452 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 453 | If this is set to a non-empty string it is equivalent to specifying the |
| 454 | :option:`-d` option. If set to an integer, it is equivalent to specifying |
| 455 | :option:`-d` multiple times. |
| 456 | |
| 457 | |
| 458 | .. envvar:: PYTHONINSPECT |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 459 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 460 | If this is set to a non-empty string it is equivalent to specifying the |
| 461 | :option:`-i` option. |
| 462 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 463 | This variable can also be modified by Python code using :data:`os.environ` |
| 464 | to force inspect mode on program termination. |
| 465 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 466 | |
| 467 | .. envvar:: PYTHONUNBUFFERED |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 468 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 469 | If this is set to a non-empty string it is equivalent to specifying the |
| 470 | :option:`-u` option. |
| 471 | |
| 472 | |
| 473 | .. envvar:: PYTHONVERBOSE |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 474 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 475 | If this is set to a non-empty string it is equivalent to specifying the |
| 476 | :option:`-v` option. If set to an integer, it is equivalent to specifying |
| 477 | :option:`-v` multiple times. |
| 478 | |
| 479 | |
| 480 | .. envvar:: PYTHONCASEOK |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 481 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 482 | If this is set, Python ignores case in :keyword:`import` statements. This |
| 483 | only works on Windows. |
| 484 | |
Georg Brandl | 2da0fce | 2008-01-07 17:09:35 +0000 | [diff] [blame] | 485 | |
| 486 | .. envvar:: PYTHONDONTWRITEBYTECODE |
| 487 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 488 | 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] | 489 | import of source modules. |
| 490 | |
| 491 | .. versionadded:: 2.6 |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 492 | |
Martin v. Löwis | 9981589 | 2008-06-01 07:20:46 +0000 | [diff] [blame] | 493 | .. envvar:: PYTHONIOENCODING |
| 494 | |
| 495 | Overrides the encoding used for stdin/stdout/stderr, in the syntax |
Georg Brandl | d987545 | 2008-06-11 17:57:44 +0000 | [diff] [blame] | 496 | ``encodingname:errorhandler``. The ``:errorhandler`` part is optional and |
| 497 | has the same meaning as in :func:`str.encode`. |
Martin v. Löwis | 9981589 | 2008-06-01 07:20:46 +0000 | [diff] [blame] | 498 | |
| 499 | .. versionadded:: 2.6 |
| 500 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 501 | |
Christian Heimes | af748c3 | 2008-05-06 22:41:46 +0000 | [diff] [blame] | 502 | .. envvar:: PYTHONNOUSERSITE |
| 503 | |
| 504 | If this is set, Python won't add the user site directory to sys.path |
| 505 | |
| 506 | .. versionadded:: 2.6 |
| 507 | |
| 508 | .. seealso:: |
| 509 | |
| 510 | :pep:`370` -- Per user site-packages directory |
| 511 | |
| 512 | |
| 513 | .. envvar:: PYTHONUSERBASE |
| 514 | |
| 515 | Sets the base directory for the user site directory |
| 516 | |
| 517 | .. versionadded:: 2.6 |
| 518 | |
| 519 | .. seealso:: |
| 520 | |
| 521 | :pep:`370` -- Per user site-packages directory |
| 522 | |
| 523 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 524 | .. envvar:: PYTHONEXECUTABLE |
| 525 | |
| 526 | If this environment variable is set, ``sys.argv[0]`` will be set to its |
| 527 | value instead of the value got through the C runtime. Only works on |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 528 | Mac OS X. |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 529 | |
| 530 | |
| 531 | Debug-mode variables |
Georg Brandl | 61d2886 | 2008-01-07 18:57:03 +0000 | [diff] [blame] | 532 | ~~~~~~~~~~~~~~~~~~~~ |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 533 | |
| 534 | 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] | 535 | if Python was configured with the :option:`--with-pydebug` build option. |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 536 | |
| 537 | .. envvar:: PYTHONTHREADDEBUG |
| 538 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 539 | If set, Python will print threading debug info. |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 540 | |
| 541 | .. versionchanged:: 2.6 |
| 542 | Previously, this variable was called ``THREADDEBUG``. |
| 543 | |
| 544 | .. envvar:: PYTHONDUMPREFS |
| 545 | |
| 546 | If set, Python will dump objects and reference counts still alive after |
| 547 | shutting down the interpreter. |
| 548 | |
| 549 | |
| 550 | .. envvar:: PYTHONMALLOCSTATS |
| 551 | |
| 552 | If set, Python will print memory allocation statistics every time a new |
| 553 | object arena is created, and on shutdown. |
| 554 | |