Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 1 | .. highlightlang:: none |
| 2 | |
Benjamin Peterson | f3a8c66 | 2010-04-06 23:32:27 +0000 | [diff] [blame] | 3 | .. ATTENTION: You probably should update Misc/python.man, too, if you modify |
| 4 | .. this file. |
| 5 | |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 6 | .. _using-on-general: |
| 7 | |
Georg Brandl | 1cddfed | 2007-10-20 18:33:20 +0000 | [diff] [blame] | 8 | Command line and environment |
| 9 | ============================ |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 10 | |
| 11 | The CPython interpreter scans the command line and the environment for various |
| 12 | settings. |
| 13 | |
Georg Brandl | 6c14e58 | 2009-10-22 11:48:10 +0000 | [diff] [blame] | 14 | .. impl-detail:: |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 15 | |
Georg Brandl | cbcfe4f | 2007-12-03 19:57:02 +0000 | [diff] [blame] | 16 | Other implementations' command line schemes may differ. See |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 17 | :ref:`implementations` for further resources. |
| 18 | |
| 19 | |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 20 | .. _using-on-cmdline: |
| 21 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 22 | Command line |
| 23 | ------------ |
| 24 | |
| 25 | When invoking Python, you may specify any of these options:: |
| 26 | |
Brett Cannon | f31d1a0 | 2010-01-01 01:44:57 +0000 | [diff] [blame] | 27 | python [-BdEiOQsStuUvVWxX3?] [-c command | -m module-name | script | - ] [args] |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 28 | |
| 29 | The most common use case is, of course, a simple invocation of a script:: |
| 30 | |
| 31 | python myscript.py |
| 32 | |
| 33 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 34 | .. _using-on-interface-options: |
| 35 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 36 | Interface options |
| 37 | ~~~~~~~~~~~~~~~~~ |
| 38 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 39 | The interpreter interface resembles that of the UNIX shell, but provides some |
| 40 | additional methods of invocation: |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 41 | |
| 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 Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 47 | * When called with a directory name argument, it reads and executes an |
| 48 | appropriately named script from that directory. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 49 | * 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 Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 52 | * 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] | 53 | Python module path and executed as a script. |
| 54 | |
| 55 | In non-interactive mode, the entire input is parsed before it is executed. |
| 56 | |
| 57 | An interface option terminates the list of options consumed by the interpreter, |
| 58 | all consecutive arguments will end up in :data:`sys.argv` -- note that the first |
| 59 | element, subscript zero (``sys.argv[0]``), is a string reflecting the program's |
| 60 | source. |
| 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 67 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 68 | 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] | 69 | ``"-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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 72 | |
| 73 | |
| 74 | .. cmdoption:: -m <module-name> |
| 75 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 76 | Search :data:`sys.path` for the named module and execute its contents as |
| 77 | the :mod:`__main__` module. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 78 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 79 | 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] | 80 | (``.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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 83 | |
Nick Coghlan | d39600e | 2009-02-08 01:26:34 +0000 | [diff] [blame] | 84 | 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 Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 90 | .. note:: |
| 91 | |
Georg Brandl | d7d4fd7 | 2009-07-26 14:37:28 +0000 | [diff] [blame] | 92 | This option cannot be used with built-in modules and extension modules |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 93 | 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 96 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 97 | If this option is given, the first element of :data:`sys.argv` will be the |
Nick Coghlan | c5e4485 | 2010-04-28 14:51:08 +0000 | [diff] [blame] | 98 | 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 101 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 102 | 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 108 | .. seealso:: |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 109 | :func:`runpy.run_module` |
Nick Coghlan | d39600e | 2009-02-08 01:26:34 +0000 | [diff] [blame] | 110 | Equivalent functionality directly available to Python code |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 111 | |
| 112 | :pep:`338` -- Executing modules as scripts |
| 113 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 114 | .. versionadded:: 2.4 |
| 115 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 116 | .. versionchanged:: 2.5 |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 117 | The named module can now be located inside a package. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 118 | |
Nick Coghlan | d39600e | 2009-02-08 01:26:34 +0000 | [diff] [blame] | 119 | .. versionchanged:: 2.7 |
| 120 | Supply the package name to run a ``__main__`` submodule. |
Nick Coghlan | ad709ee | 2010-04-28 14:53:59 +0000 | [diff] [blame] | 121 | sys.argv[0] is now set to ``"-m"`` while searching for the module |
| 122 | (it was previously incorrectly set to ``"-c"``) |
Nick Coghlan | d39600e | 2009-02-08 01:26:34 +0000 | [diff] [blame] | 123 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 124 | |
| 125 | .. describe:: - |
| 126 | |
| 127 | Read commands from standard input (:data:`sys.stdin`). If standard input is |
| 128 | a terminal, :option:`-i` is implied. |
| 129 | |
| 130 | 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] | 131 | ``"-"`` and the current directory will be added to the start of |
| 132 | :data:`sys.path`. |
| 133 | |
| 134 | |
| 135 | .. describe:: <script> |
| 136 | |
| 137 | Execute the Python code contained in *script*, which must be a filesystem |
| 138 | path (absolute or relative) referring to either a Python file, a directory |
| 139 | containing a ``__main__.py`` file, or a zipfile containing a |
| 140 | ``__main__.py`` file. |
| 141 | |
| 142 | If this option is given, the first element of :data:`sys.argv` will be the |
| 143 | script name as given on the command line. |
| 144 | |
| 145 | If the script name refers directly to a Python file, the directory |
| 146 | containing that file is added to the start of :data:`sys.path`, and the |
| 147 | file is executed as the :mod:`__main__` module. |
| 148 | |
| 149 | If the script name refers to a directory or zipfile, the script name is |
| 150 | added to the start of :data:`sys.path` and the ``__main__.py`` file in |
| 151 | that location is executed as the :mod:`__main__` module. |
| 152 | |
| 153 | .. versionchanged:: 2.5 |
| 154 | Directories and zipfiles containing a ``__main__.py`` file at the top |
| 155 | level are now considered valid Python scripts. |
| 156 | |
| 157 | If no interface option is given, :option:`-i` is implied, ``sys.argv[0]`` is |
| 158 | an empty string (``""``) and the current directory will be added to the |
| 159 | start of :data:`sys.path`. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 160 | |
Georg Brandl | 14da8e8 | 2008-11-07 08:27:39 +0000 | [diff] [blame] | 161 | .. seealso:: :ref:`tut-invoking` |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 162 | |
| 163 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 164 | Generic options |
| 165 | ~~~~~~~~~~~~~~~ |
| 166 | |
| 167 | .. cmdoption:: -? |
| 168 | -h |
| 169 | --help |
| 170 | |
| 171 | Print a short description of all command line options. |
| 172 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 173 | .. versionchanged:: 2.5 |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 174 | The ``--help`` variant. |
| 175 | |
| 176 | |
| 177 | .. cmdoption:: -V |
| 178 | --version |
| 179 | |
| 180 | Print the Python version number and exit. Example output could be:: |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 181 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 182 | Python 2.5.1 |
| 183 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 184 | .. versionchanged:: 2.5 |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 185 | The ``--version`` variant. |
| 186 | |
| 187 | |
| 188 | Miscellaneous options |
| 189 | ~~~~~~~~~~~~~~~~~~~~~ |
| 190 | |
Georg Brandl | 2da0fce | 2008-01-07 17:09:35 +0000 | [diff] [blame] | 191 | .. cmdoption:: -B |
| 192 | |
| 193 | If given, Python won't try to write ``.pyc`` or ``.pyo`` files on the |
| 194 | import of source modules. See also :envvar:`PYTHONDONTWRITEBYTECODE`. |
| 195 | |
| 196 | .. versionadded:: 2.6 |
| 197 | |
| 198 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 199 | .. cmdoption:: -d |
| 200 | |
| 201 | Turn on parser debugging output (for wizards only, depending on compilation |
| 202 | options). See also :envvar:`PYTHONDEBUG`. |
| 203 | |
| 204 | |
| 205 | .. cmdoption:: -E |
| 206 | |
Georg Brandl | c5004f3 | 2007-10-20 19:05:45 +0000 | [diff] [blame] | 207 | Ignore all :envvar:`PYTHON*` environment variables, e.g. |
Georg Brandl | 3507333 | 2007-10-20 19:08:36 +0000 | [diff] [blame] | 208 | :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 209 | |
Georg Brandl | c5004f3 | 2007-10-20 19:05:45 +0000 | [diff] [blame] | 210 | .. versionadded:: 2.2 |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 211 | |
| 212 | |
| 213 | .. cmdoption:: -i |
| 214 | |
| 215 | When a script is passed as first argument or the :option:`-c` option is used, |
| 216 | enter interactive mode after executing the script or the command, even when |
| 217 | :data:`sys.stdin` does not appear to be a terminal. The |
| 218 | :envvar:`PYTHONSTARTUP` file is not read. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 219 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 220 | This can be useful to inspect global variables or a stack trace when a script |
| 221 | raises an exception. See also :envvar:`PYTHONINSPECT`. |
| 222 | |
| 223 | |
| 224 | .. cmdoption:: -O |
| 225 | |
| 226 | Turn on basic optimizations. This changes the filename extension for |
Georg Brandl | 5e52db0 | 2007-10-21 10:45:46 +0000 | [diff] [blame] | 227 | compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 228 | :envvar:`PYTHONOPTIMIZE`. |
| 229 | |
| 230 | |
| 231 | .. cmdoption:: -OO |
| 232 | |
| 233 | Discard docstrings in addition to the :option:`-O` optimizations. |
| 234 | |
| 235 | |
| 236 | .. cmdoption:: -Q <arg> |
| 237 | |
| 238 | Division control. The argument must be one of the following: |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 239 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 240 | ``old`` |
| 241 | division of int/int and long/long return an int or long (*default*) |
| 242 | ``new`` |
| 243 | new division semantics, i.e. division of int/int and long/long returns a |
| 244 | float |
| 245 | ``warn`` |
| 246 | old division semantics with a warning for int/int and long/long |
| 247 | ``warnall`` |
| 248 | old division semantics with a warning for all uses of the division operator |
| 249 | |
| 250 | .. seealso:: |
| 251 | :file:`Tools/scripts/fixdiv.py` |
| 252 | for a use of ``warnall`` |
| 253 | |
| 254 | :pep:`238` -- Changing the division operator |
| 255 | |
| 256 | |
Christian Heimes | af748c3 | 2008-05-06 22:41:46 +0000 | [diff] [blame] | 257 | .. cmdoption:: -s |
| 258 | |
| 259 | Don't add user site directory to sys.path |
| 260 | |
| 261 | .. versionadded:: 2.6 |
| 262 | |
| 263 | .. seealso:: |
| 264 | |
| 265 | :pep:`370` -- Per user site-packages directory |
| 266 | |
| 267 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 268 | .. cmdoption:: -S |
| 269 | |
| 270 | Disable the import of the module :mod:`site` and the site-dependent |
| 271 | manipulations of :data:`sys.path` that it entails. |
| 272 | |
| 273 | |
| 274 | .. cmdoption:: -t |
| 275 | |
| 276 | Issue a warning when a source file mixes tabs and spaces for indentation in a |
| 277 | way that makes it depend on the worth of a tab expressed in spaces. Issue an |
| 278 | error when the option is given twice (:option:`-tt`). |
| 279 | |
| 280 | |
| 281 | .. cmdoption:: -u |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 282 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 283 | Force stdin, stdout and stderr to be totally unbuffered. On systems where it |
| 284 | matters, also put stdin, stdout and stderr in binary mode. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 285 | |
Georg Brandl | f4ef23f | 2007-10-30 17:51:18 +0000 | [diff] [blame] | 286 | Note that there is internal buffering in :meth:`file.readlines` and |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 287 | :ref:`bltin-file-objects` (``for line in sys.stdin``) which is not influenced |
| 288 | by this option. To work around this, you will want to use |
Georg Brandl | f4ef23f | 2007-10-30 17:51:18 +0000 | [diff] [blame] | 289 | :meth:`file.readline` inside a ``while 1:`` loop. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 290 | |
| 291 | See also :envvar:`PYTHONUNBUFFERED`. |
| 292 | |
| 293 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 294 | .. cmdoption:: -v |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 295 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 296 | Print a message each time a module is initialized, showing the place |
| 297 | (filename or built-in module) from which it is loaded. When given twice |
| 298 | (:option:`-vv`), print a message for each file that is checked for when |
| 299 | searching for a module. Also provides information on module cleanup at exit. |
| 300 | See also :envvar:`PYTHONVERBOSE`. |
| 301 | |
| 302 | |
| 303 | .. cmdoption:: -W arg |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 304 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 305 | Warning control. Python's warning machinery by default prints warning |
| 306 | messages to :data:`sys.stderr`. A typical warning message has the following |
| 307 | form:: |
| 308 | |
| 309 | file:line: category: message |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 310 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 311 | By default, each warning is printed once for each source line where it |
| 312 | occurs. This option controls how often warnings are printed. |
| 313 | |
| 314 | Multiple :option:`-W` options may be given; when a warning matches more than |
| 315 | one option, the action for the last matching option is performed. Invalid |
| 316 | :option:`-W` options are ignored (though, a warning message is printed about |
| 317 | invalid options when the first warning is issued). |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 318 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 319 | Warnings can also be controlled from within a Python program using the |
| 320 | :mod:`warnings` module. |
| 321 | |
| 322 | The simplest form of argument is one of the following action strings (or a |
Brett Cannon | f31d1a0 | 2010-01-01 01:44:57 +0000 | [diff] [blame] | 323 | unique abbreviation) by themselves: |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 324 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 325 | ``ignore`` |
| 326 | Ignore all warnings. |
| 327 | ``default`` |
| 328 | Explicitly request the default behavior (printing each warning once per |
| 329 | source line). |
| 330 | ``all`` |
| 331 | Print a warning each time it occurs (this may generate many messages if a |
| 332 | warning is triggered repeatedly for the same source line, such as inside a |
| 333 | loop). |
| 334 | ``module`` |
Georg Brandl | 5a85d5c | 2009-06-24 06:41:19 +0000 | [diff] [blame] | 335 | Print each warning only the first time it occurs in each module. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 336 | ``once`` |
| 337 | Print each warning only the first time it occurs in the program. |
| 338 | ``error`` |
| 339 | Raise an exception instead of printing a warning message. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 340 | |
| 341 | The full form of argument is:: |
| 342 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 343 | action:message:category:module:line |
| 344 | |
| 345 | Here, *action* is as explained above but only applies to messages that match |
| 346 | the remaining fields. Empty fields match all values; trailing empty fields |
| 347 | may be omitted. The *message* field matches the start of the warning message |
| 348 | printed; this match is case-insensitive. The *category* field matches the |
Andrew M. Kuchling | fced908 | 2010-04-11 01:39:36 +0000 | [diff] [blame] | 349 | warning category. This must be a class name; the match tests whether the |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 350 | actual warning category of the message is a subclass of the specified warning |
| 351 | category. The full class name must be given. The *module* field matches the |
| 352 | (fully-qualified) module name; this match is case-sensitive. The *line* |
| 353 | field matches the line number, where zero matches all line numbers and is |
| 354 | thus equivalent to an omitted line number. |
| 355 | |
| 356 | .. seealso:: |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 357 | :mod:`warnings` -- the warnings module |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 358 | |
| 359 | :pep:`230` -- Warning framework |
| 360 | |
Philip Jenvey | aebbaeb | 2010-04-06 23:24:45 +0000 | [diff] [blame] | 361 | :envvar:`PYTHONWARNINGS` |
| 362 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 363 | |
| 364 | .. cmdoption:: -x |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 365 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 366 | Skip the first line of the source, allowing use of non-Unix forms of |
| 367 | ``#!cmd``. This is intended for a DOS specific hack only. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 368 | |
Georg Brandl | d91f8cf | 2009-04-27 15:10:44 +0000 | [diff] [blame] | 369 | .. note:: The line numbers in error messages will be off by one. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 370 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 371 | .. cmdoption:: -3 |
| 372 | |
Benjamin Peterson | a924289 | 2009-01-09 03:03:05 +0000 | [diff] [blame] | 373 | Warn about Python 3.x incompatibilities which cannot be fixed trivially by |
Benjamin Peterson | fe8076e | 2009-01-09 02:53:35 +0000 | [diff] [blame] | 374 | :ref:`2to3 <2to3-reference>`. Among these are: |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 375 | |
| 376 | * :meth:`dict.has_key` |
| 377 | * :func:`apply` |
| 378 | * :func:`callable` |
| 379 | * :func:`coerce` |
| 380 | * :func:`execfile` |
| 381 | * :func:`reduce` |
| 382 | * :func:`reload` |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 383 | |
Georg Brandl | 4425e7c | 2008-02-23 23:43:01 +0000 | [diff] [blame] | 384 | Using these will emit a :exc:`DeprecationWarning`. |
| 385 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 386 | .. versionadded:: 2.6 |
| 387 | |
Barry Warsaw | b1e66ee | 2010-02-05 18:45:25 +0000 | [diff] [blame] | 388 | Options you shouldn't use |
| 389 | ~~~~~~~~~~~~~~~~~~~~~~~~~ |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 390 | |
Barry Warsaw | b1e66ee | 2010-02-05 18:45:25 +0000 | [diff] [blame] | 391 | .. cmdoption:: -J |
| 392 | |
| 393 | Reserved for use by Jython_. |
| 394 | |
| 395 | .. _Jython: http://jython.org |
| 396 | |
| 397 | .. cmdoption:: -U |
| 398 | |
| 399 | Turns all string literals into unicodes globally. Do not be tempted to use |
| 400 | this option as it will probably break your world. It also produces |
| 401 | ``.pyc`` files with a different magic number than normal. Instead, you can |
| 402 | enable unicode literals on a per-module basis by using:: |
| 403 | |
| 404 | from __future__ import unicode_literals |
| 405 | |
| 406 | at the top of the file. See :mod:`__future__` for details. |
| 407 | |
| 408 | .. cmdoption:: -X |
| 409 | |
| 410 | Reserved for alternative implementations of Python to use for their own |
| 411 | purposes. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 412 | |
Georg Brandl | 87983f2 | 2007-12-01 23:12:45 +0000 | [diff] [blame] | 413 | .. _using-on-envvars: |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 414 | |
| 415 | Environment variables |
| 416 | --------------------- |
| 417 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 418 | These environment variables influence Python's behavior. |
| 419 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 420 | .. envvar:: PYTHONHOME |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 421 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 422 | Change the location of the standard Python libraries. By default, the |
Georg Brandl | 21297fa | 2008-01-20 21:10:08 +0000 | [diff] [blame] | 423 | libraries are searched in :file:`{prefix}/lib/python{version}` and |
| 424 | :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 425 | :file:`{exec_prefix}` are installation-dependent directories, both defaulting |
| 426 | to :file:`/usr/local`. |
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 | When :envvar:`PYTHONHOME` is set to a single directory, its value replaces |
| 429 | both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values |
Georg Brandl | 21297fa | 2008-01-20 21:10:08 +0000 | [diff] [blame] | 430 | for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 431 | |
| 432 | |
| 433 | .. envvar:: PYTHONPATH |
| 434 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 435 | 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] | 436 | the shell's :envvar:`PATH`: one or more directory pathnames separated by |
Georg Brandl | 9c06574 | 2008-03-05 19:31:44 +0000 | [diff] [blame] | 437 | :data:`os.pathsep` (e.g. colons on Unix or semicolons on Windows). |
| 438 | Non-existent directories are silently ignored. |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 439 | |
| 440 | In addition to normal directories, individual :envvar:`PYTHONPATH` entries |
| 441 | may refer to zipfiles containing pure Python modules (in either source or |
| 442 | compiled form). Extension modules cannot be imported from zipfiles. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 443 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 444 | The default search path is installation dependent, but generally begins with |
Georg Brandl | fc29f27 | 2009-01-02 20:25:14 +0000 | [diff] [blame] | 445 | :file:`{prefix}/lib/python{version}` (see :envvar:`PYTHONHOME` above). It |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 446 | is *always* appended to :envvar:`PYTHONPATH`. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 447 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 448 | An additional directory will be inserted in the search path in front of |
| 449 | :envvar:`PYTHONPATH` as described above under |
| 450 | :ref:`using-on-interface-options`. The search path can be manipulated from |
| 451 | within a Python program as the variable :data:`sys.path`. |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 452 | |
| 453 | |
| 454 | .. envvar:: PYTHONSTARTUP |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 455 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 456 | If this is the name of a readable file, the Python commands in that file are |
| 457 | executed before the first prompt is displayed in interactive mode. The file |
Georg Brandl | a739503 | 2007-10-21 12:15:05 +0000 | [diff] [blame] | 458 | is executed in the same namespace where interactive commands are executed so |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 459 | that objects defined or imported in it can be used without qualification in |
| 460 | the interactive session. You can also change the prompts :data:`sys.ps1` and |
| 461 | :data:`sys.ps2` in this file. |
| 462 | |
| 463 | |
| 464 | .. envvar:: PYTHONY2K |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 465 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 466 | Set this to a non-empty string to cause the :mod:`time` module to require |
| 467 | dates specified as strings to include 4-digit years, otherwise 2-digit years |
| 468 | are converted based on rules described in the :mod:`time` module |
| 469 | documentation. |
| 470 | |
| 471 | |
| 472 | .. envvar:: PYTHONOPTIMIZE |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 473 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 474 | If this is set to a non-empty string it is equivalent to specifying the |
| 475 | :option:`-O` option. If set to an integer, it is equivalent to specifying |
| 476 | :option:`-O` multiple times. |
| 477 | |
| 478 | |
| 479 | .. envvar:: PYTHONDEBUG |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 480 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 481 | If this is set to a non-empty string it is equivalent to specifying the |
| 482 | :option:`-d` option. If set to an integer, it is equivalent to specifying |
| 483 | :option:`-d` multiple times. |
| 484 | |
| 485 | |
| 486 | .. envvar:: PYTHONINSPECT |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 487 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 488 | If this is set to a non-empty string it is equivalent to specifying the |
| 489 | :option:`-i` option. |
| 490 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 491 | This variable can also be modified by Python code using :data:`os.environ` |
| 492 | to force inspect mode on program termination. |
| 493 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 494 | |
| 495 | .. envvar:: PYTHONUNBUFFERED |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 496 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 497 | If this is set to a non-empty string it is equivalent to specifying the |
| 498 | :option:`-u` option. |
| 499 | |
| 500 | |
| 501 | .. envvar:: PYTHONVERBOSE |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 502 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 503 | If this is set to a non-empty string it is equivalent to specifying the |
| 504 | :option:`-v` option. If set to an integer, it is equivalent to specifying |
| 505 | :option:`-v` multiple times. |
| 506 | |
| 507 | |
| 508 | .. envvar:: PYTHONCASEOK |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 509 | |
Georg Brandl | 59d121a | 2007-10-20 18:08:14 +0000 | [diff] [blame] | 510 | If this is set, Python ignores case in :keyword:`import` statements. This |
| 511 | only works on Windows. |
| 512 | |
Georg Brandl | 2da0fce | 2008-01-07 17:09:35 +0000 | [diff] [blame] | 513 | |
| 514 | .. envvar:: PYTHONDONTWRITEBYTECODE |
| 515 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 516 | 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] | 517 | import of source modules. |
| 518 | |
| 519 | .. versionadded:: 2.6 |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 520 | |
Martin v. Löwis | 9981589 | 2008-06-01 07:20:46 +0000 | [diff] [blame] | 521 | .. envvar:: PYTHONIOENCODING |
| 522 | |
| 523 | Overrides the encoding used for stdin/stdout/stderr, in the syntax |
Georg Brandl | d987545 | 2008-06-11 17:57:44 +0000 | [diff] [blame] | 524 | ``encodingname:errorhandler``. The ``:errorhandler`` part is optional and |
| 525 | has the same meaning as in :func:`str.encode`. |
Martin v. Löwis | 9981589 | 2008-06-01 07:20:46 +0000 | [diff] [blame] | 526 | |
| 527 | .. versionadded:: 2.6 |
| 528 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 529 | |
Christian Heimes | af748c3 | 2008-05-06 22:41:46 +0000 | [diff] [blame] | 530 | .. envvar:: PYTHONNOUSERSITE |
| 531 | |
| 532 | If this is set, Python won't add the user site directory to sys.path |
| 533 | |
| 534 | .. versionadded:: 2.6 |
| 535 | |
| 536 | .. seealso:: |
| 537 | |
| 538 | :pep:`370` -- Per user site-packages directory |
| 539 | |
| 540 | |
| 541 | .. envvar:: PYTHONUSERBASE |
| 542 | |
| 543 | Sets the base directory for the user site directory |
| 544 | |
| 545 | .. versionadded:: 2.6 |
| 546 | |
| 547 | .. seealso:: |
| 548 | |
| 549 | :pep:`370` -- Per user site-packages directory |
| 550 | |
| 551 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 552 | .. envvar:: PYTHONEXECUTABLE |
| 553 | |
| 554 | If this environment variable is set, ``sys.argv[0]`` will be set to its |
| 555 | 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] | 556 | Mac OS X. |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 557 | |
Philip Jenvey | aebbaeb | 2010-04-06 23:24:45 +0000 | [diff] [blame] | 558 | .. envvar:: PYTHONWARNINGS |
| 559 | |
Andrew M. Kuchling | fced908 | 2010-04-11 01:39:36 +0000 | [diff] [blame] | 560 | This is equivalent to the :option:`-W` option. If set to a comma |
Philip Jenvey | aebbaeb | 2010-04-06 23:24:45 +0000 | [diff] [blame] | 561 | separated string, it is equivalent to specifying :option:`-W` multiple |
| 562 | times. |
| 563 | |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 564 | |
| 565 | Debug-mode variables |
Georg Brandl | 61d2886 | 2008-01-07 18:57:03 +0000 | [diff] [blame] | 566 | ~~~~~~~~~~~~~~~~~~~~ |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 567 | |
| 568 | 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] | 569 | if Python was configured with the :option:`--with-pydebug` build option. |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 570 | |
| 571 | .. envvar:: PYTHONTHREADDEBUG |
| 572 | |
Nick Coghlan | 31f6315 | 2008-04-30 14:23:36 +0000 | [diff] [blame] | 573 | If set, Python will print threading debug info. |
Georg Brandl | aed6c66 | 2008-01-07 17:25:53 +0000 | [diff] [blame] | 574 | |
| 575 | .. versionchanged:: 2.6 |
| 576 | Previously, this variable was called ``THREADDEBUG``. |
| 577 | |
| 578 | .. envvar:: PYTHONDUMPREFS |
| 579 | |
| 580 | If set, Python will dump objects and reference counts still alive after |
| 581 | shutting down the interpreter. |
| 582 | |
| 583 | |
| 584 | .. envvar:: PYTHONMALLOCSTATS |
| 585 | |
| 586 | If set, Python will print memory allocation statistics every time a new |
| 587 | object arena is created, and on shutdown. |
| 588 | |