Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | |
| 2 | :mod:`sys` --- System-specific parameters and functions |
| 3 | ======================================================= |
| 4 | |
| 5 | .. module:: sys |
| 6 | :synopsis: Access system-specific parameters and functions. |
| 7 | |
| 8 | |
| 9 | This module provides access to some variables used or maintained by the |
| 10 | interpreter and to functions that interact strongly with the interpreter. It is |
| 11 | always available. |
| 12 | |
| 13 | |
| 14 | .. data:: argv |
| 15 | |
| 16 | The list of command line arguments passed to a Python script. ``argv[0]`` is the |
| 17 | script name (it is operating system dependent whether this is a full pathname or |
| 18 | not). If the command was executed using the :option:`-c` command line option to |
| 19 | the interpreter, ``argv[0]`` is set to the string ``'-c'``. If no script name |
| 20 | was passed to the Python interpreter, ``argv[0]`` is the empty string. |
| 21 | |
| 22 | To loop over the standard input, or the list of files given on the |
| 23 | command line, see the :mod:`fileinput` module. |
| 24 | |
| 25 | |
| 26 | .. data:: byteorder |
| 27 | |
| 28 | An indicator of the native byte order. This will have the value ``'big'`` on |
| 29 | big-endian (most-significant byte first) platforms, and ``'little'`` on |
| 30 | little-endian (least-significant byte first) platforms. |
| 31 | |
| 32 | .. versionadded:: 2.0 |
| 33 | |
| 34 | |
| 35 | .. data:: subversion |
| 36 | |
| 37 | A triple (repo, branch, version) representing the Subversion information of the |
| 38 | Python interpreter. *repo* is the name of the repository, ``'CPython'``. |
| 39 | *branch* is a string of one of the forms ``'trunk'``, ``'branches/name'`` or |
| 40 | ``'tags/name'``. *version* is the output of ``svnversion``, if the interpreter |
| 41 | was built from a Subversion checkout; it contains the revision number (range) |
| 42 | and possibly a trailing 'M' if there were local modifications. If the tree was |
| 43 | exported (or svnversion was not available), it is the revision of |
| 44 | ``Include/patchlevel.h`` if the branch is a tag. Otherwise, it is ``None``. |
| 45 | |
| 46 | .. versionadded:: 2.5 |
| 47 | |
| 48 | |
| 49 | .. data:: builtin_module_names |
| 50 | |
| 51 | A tuple of strings giving the names of all modules that are compiled into this |
| 52 | Python interpreter. (This information is not available in any other way --- |
| 53 | ``modules.keys()`` only lists the imported modules.) |
| 54 | |
| 55 | |
| 56 | .. data:: copyright |
| 57 | |
| 58 | A string containing the copyright pertaining to the Python interpreter. |
| 59 | |
| 60 | |
Christian Heimes | 422051a | 2008-02-04 18:00:12 +0000 | [diff] [blame] | 61 | .. function:: _clear_type_cache() |
| 62 | |
| 63 | Clear the internal type cache. The type cache is used to speed up attribute |
| 64 | and method lookups. Use the function *only* to drop unnecessary references |
| 65 | during reference leak debugging. |
| 66 | |
| 67 | This function should be used for internal and specialized purposes only. |
Christian Heimes | 908caac | 2008-01-27 23:34:59 +0000 | [diff] [blame] | 68 | |
| 69 | .. versionadded:: 2.6 |
| 70 | |
| 71 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 72 | .. function:: _current_frames() |
| 73 | |
| 74 | Return a dictionary mapping each thread's identifier to the topmost stack frame |
| 75 | currently active in that thread at the time the function is called. Note that |
| 76 | functions in the :mod:`traceback` module can build the call stack given such a |
| 77 | frame. |
| 78 | |
| 79 | This is most useful for debugging deadlock: this function does not require the |
| 80 | deadlocked threads' cooperation, and such threads' call stacks are frozen for as |
| 81 | long as they remain deadlocked. The frame returned for a non-deadlocked thread |
| 82 | may bear no relationship to that thread's current activity by the time calling |
| 83 | code examines the frame. |
| 84 | |
| 85 | This function should be used for internal and specialized purposes only. |
| 86 | |
| 87 | .. versionadded:: 2.5 |
| 88 | |
| 89 | |
| 90 | .. data:: dllhandle |
| 91 | |
| 92 | Integer specifying the handle of the Python DLL. Availability: Windows. |
| 93 | |
| 94 | |
| 95 | .. function:: displayhook(value) |
| 96 | |
| 97 | If *value* is not ``None``, this function prints it to ``sys.stdout``, and saves |
| 98 | it in ``__builtin__._``. |
| 99 | |
Georg Brandl | 584265b | 2007-12-02 14:58:50 +0000 | [diff] [blame] | 100 | ``sys.displayhook`` is called on the result of evaluating an :term:`expression` |
| 101 | entered in an interactive Python session. The display of these values can be |
| 102 | customized by assigning another one-argument function to ``sys.displayhook``. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 103 | |
| 104 | |
| 105 | .. function:: excepthook(type, value, traceback) |
| 106 | |
| 107 | This function prints out a given traceback and exception to ``sys.stderr``. |
| 108 | |
| 109 | When an exception is raised and uncaught, the interpreter calls |
| 110 | ``sys.excepthook`` with three arguments, the exception class, exception |
| 111 | instance, and a traceback object. In an interactive session this happens just |
| 112 | before control is returned to the prompt; in a Python program this happens just |
| 113 | before the program exits. The handling of such top-level exceptions can be |
| 114 | customized by assigning another three-argument function to ``sys.excepthook``. |
| 115 | |
| 116 | |
| 117 | .. data:: __displayhook__ |
| 118 | __excepthook__ |
| 119 | |
| 120 | These objects contain the original values of ``displayhook`` and ``excepthook`` |
| 121 | at the start of the program. They are saved so that ``displayhook`` and |
| 122 | ``excepthook`` can be restored in case they happen to get replaced with broken |
| 123 | objects. |
| 124 | |
| 125 | |
| 126 | .. function:: exc_info() |
| 127 | |
| 128 | This function returns a tuple of three values that give information about the |
| 129 | exception that is currently being handled. The information returned is specific |
| 130 | both to the current thread and to the current stack frame. If the current stack |
| 131 | frame is not handling an exception, the information is taken from the calling |
| 132 | stack frame, or its caller, and so on until a stack frame is found that is |
| 133 | handling an exception. Here, "handling an exception" is defined as "executing |
| 134 | or having executed an except clause." For any stack frame, only information |
| 135 | about the most recently handled exception is accessible. |
| 136 | |
| 137 | .. index:: object: traceback |
| 138 | |
| 139 | If no exception is being handled anywhere on the stack, a tuple containing three |
| 140 | ``None`` values is returned. Otherwise, the values returned are ``(type, value, |
| 141 | traceback)``. Their meaning is: *type* gets the exception type of the exception |
| 142 | being handled (a class object); *value* gets the exception parameter (its |
| 143 | :dfn:`associated value` or the second argument to :keyword:`raise`, which is |
| 144 | always a class instance if the exception type is a class object); *traceback* |
| 145 | gets a traceback object (see the Reference Manual) which encapsulates the call |
| 146 | stack at the point where the exception originally occurred. |
| 147 | |
| 148 | If :func:`exc_clear` is called, this function will return three ``None`` values |
| 149 | until either another exception is raised in the current thread or the execution |
| 150 | stack returns to a frame where another exception is being handled. |
| 151 | |
| 152 | .. warning:: |
| 153 | |
| 154 | Assigning the *traceback* return value to a local variable in a function that is |
| 155 | handling an exception will cause a circular reference. This will prevent |
| 156 | anything referenced by a local variable in the same function or by the traceback |
| 157 | from being garbage collected. Since most functions don't need access to the |
| 158 | traceback, the best solution is to use something like ``exctype, value = |
| 159 | sys.exc_info()[:2]`` to extract only the exception type and value. If you do |
| 160 | need the traceback, make sure to delete it after use (best done with a |
| 161 | :keyword:`try` ... :keyword:`finally` statement) or to call :func:`exc_info` in |
| 162 | a function that does not itself handle an exception. |
| 163 | |
| 164 | .. note:: |
| 165 | |
| 166 | Beginning with Python 2.2, such cycles are automatically reclaimed when garbage |
| 167 | collection is enabled and they become unreachable, but it remains more efficient |
| 168 | to avoid creating cycles. |
| 169 | |
| 170 | |
| 171 | .. function:: exc_clear() |
| 172 | |
| 173 | This function clears all information relating to the current or last exception |
| 174 | that occurred in the current thread. After calling this function, |
| 175 | :func:`exc_info` will return three ``None`` values until another exception is |
| 176 | raised in the current thread or the execution stack returns to a frame where |
| 177 | another exception is being handled. |
| 178 | |
| 179 | This function is only needed in only a few obscure situations. These include |
| 180 | logging and error handling systems that report information on the last or |
| 181 | current exception. This function can also be used to try to free resources and |
| 182 | trigger object finalization, though no guarantee is made as to what objects will |
| 183 | be freed, if any. |
| 184 | |
| 185 | .. versionadded:: 2.3 |
| 186 | |
| 187 | |
| 188 | .. data:: exc_type |
| 189 | exc_value |
| 190 | exc_traceback |
| 191 | |
| 192 | .. deprecated:: 1.5 |
| 193 | Use :func:`exc_info` instead. |
| 194 | |
| 195 | Since they are global variables, they are not specific to the current thread, so |
| 196 | their use is not safe in a multi-threaded program. When no exception is being |
| 197 | handled, ``exc_type`` is set to ``None`` and the other two are undefined. |
| 198 | |
| 199 | |
| 200 | .. data:: exec_prefix |
| 201 | |
| 202 | A string giving the site-specific directory prefix where the platform-dependent |
| 203 | Python files are installed; by default, this is also ``'/usr/local'``. This can |
| 204 | be set at build time with the :option:`--exec-prefix` argument to the |
| 205 | :program:`configure` script. Specifically, all configuration files (e.g. the |
| 206 | :file:`pyconfig.h` header file) are installed in the directory ``exec_prefix + |
| 207 | '/lib/pythonversion/config'``, and shared library modules are installed in |
| 208 | ``exec_prefix + '/lib/pythonversion/lib-dynload'``, where *version* is equal to |
| 209 | ``version[:3]``. |
| 210 | |
| 211 | |
| 212 | .. data:: executable |
| 213 | |
| 214 | A string giving the name of the executable binary for the Python interpreter, on |
| 215 | systems where this makes sense. |
| 216 | |
| 217 | |
| 218 | .. function:: exit([arg]) |
| 219 | |
| 220 | Exit from Python. This is implemented by raising the :exc:`SystemExit` |
| 221 | exception, so cleanup actions specified by finally clauses of :keyword:`try` |
| 222 | statements are honored, and it is possible to intercept the exit attempt at an |
| 223 | outer level. The optional argument *arg* can be an integer giving the exit |
| 224 | status (defaulting to zero), or another type of object. If it is an integer, |
| 225 | zero is considered "successful termination" and any nonzero value is considered |
| 226 | "abnormal termination" by shells and the like. Most systems require it to be in |
| 227 | the range 0-127, and produce undefined results otherwise. Some systems have a |
| 228 | convention for assigning specific meanings to specific exit codes, but these are |
| 229 | generally underdeveloped; Unix programs generally use 2 for command line syntax |
| 230 | errors and 1 for all other kind of errors. If another type of object is passed, |
| 231 | ``None`` is equivalent to passing zero, and any other object is printed to |
| 232 | ``sys.stderr`` and results in an exit code of 1. In particular, |
| 233 | ``sys.exit("some error message")`` is a quick way to exit a program when an |
| 234 | error occurs. |
| 235 | |
| 236 | |
| 237 | .. data:: exitfunc |
| 238 | |
| 239 | This value is not actually defined by the module, but can be set by the user (or |
| 240 | by a program) to specify a clean-up action at program exit. When set, it should |
| 241 | be a parameterless function. This function will be called when the interpreter |
| 242 | exits. Only one function may be installed in this way; to allow multiple |
| 243 | functions which will be called at termination, use the :mod:`atexit` module. |
| 244 | |
| 245 | .. note:: |
| 246 | |
| 247 | The exit function is not called when the program is killed by a signal, when a |
| 248 | Python fatal internal error is detected, or when ``os._exit()`` is called. |
| 249 | |
| 250 | .. deprecated:: 2.4 |
| 251 | Use :mod:`atexit` instead. |
| 252 | |
| 253 | |
Christian Heimes | f31b69f | 2008-01-14 03:42:48 +0000 | [diff] [blame] | 254 | .. data:: flags |
| 255 | |
| 256 | The struct sequence *flags* exposes the status of command line flags. The |
| 257 | attributes are read only. |
| 258 | |
| 259 | +------------------------------+------------------------------------------+ |
| 260 | | attribute | flag | |
| 261 | +==============================+==========================================+ |
| 262 | | :const:`debug` | -d | |
| 263 | +------------------------------+------------------------------------------+ |
| 264 | | :const:`py3k_warning` | -3 | |
| 265 | +------------------------------+------------------------------------------+ |
| 266 | | :const:`division_warning` | -Q | |
| 267 | +------------------------------+------------------------------------------+ |
| 268 | | :const:`division_new` | -Qnew | |
| 269 | +------------------------------+------------------------------------------+ |
| 270 | | :const:`inspect` | -i | |
| 271 | +------------------------------+------------------------------------------+ |
| 272 | | :const:`interactive` | -i | |
| 273 | +------------------------------+------------------------------------------+ |
| 274 | | :const:`optimize` | -O or -OO | |
| 275 | +------------------------------+------------------------------------------+ |
| 276 | | :const:`dont_write_bytecode` | -B | |
| 277 | +------------------------------+------------------------------------------+ |
| 278 | | :const:`no_site` | -S | |
| 279 | +------------------------------+------------------------------------------+ |
Andrew M. Kuchling | 7ce9b18 | 2008-01-15 01:29:16 +0000 | [diff] [blame] | 280 | | :const:`ignore_environment` | -E | |
Christian Heimes | f31b69f | 2008-01-14 03:42:48 +0000 | [diff] [blame] | 281 | +------------------------------+------------------------------------------+ |
| 282 | | :const:`tabcheck` | -t or -tt | |
| 283 | +------------------------------+------------------------------------------+ |
| 284 | | :const:`verbose` | -v | |
| 285 | +------------------------------+------------------------------------------+ |
| 286 | | :const:`unicode` | -U | |
| 287 | +------------------------------+------------------------------------------+ |
| 288 | |
| 289 | .. versionadded:: 2.6 |
| 290 | |
| 291 | |
Christian Heimes | dfdfaab | 2007-12-01 11:20:10 +0000 | [diff] [blame] | 292 | .. data:: float_info |
| 293 | |
Christian Heimes | c94e2b5 | 2008-01-14 04:13:37 +0000 | [diff] [blame] | 294 | A structseq holding information about the float type. It contains low level |
Christian Heimes | dfdfaab | 2007-12-01 11:20:10 +0000 | [diff] [blame] | 295 | information about the precision and internal representation. Please study |
| 296 | your system's :file:`float.h` for more information. |
| 297 | |
| 298 | +---------------------+--------------------------------------------------+ |
Christian Heimes | c94e2b5 | 2008-01-14 04:13:37 +0000 | [diff] [blame] | 299 | | attribute | explanation | |
Christian Heimes | dfdfaab | 2007-12-01 11:20:10 +0000 | [diff] [blame] | 300 | +=====================+==================================================+ |
| 301 | | :const:`epsilon` | Difference between 1 and the next representable | |
| 302 | | | floating point number | |
| 303 | +---------------------+--------------------------------------------------+ |
| 304 | | :const:`dig` | digits (see :file:`float.h`) | |
| 305 | +---------------------+--------------------------------------------------+ |
| 306 | | :const:`mant_dig` | mantissa digits (see :file:`float.h`) | |
| 307 | +---------------------+--------------------------------------------------+ |
| 308 | | :const:`max` | maximum representable finite float | |
| 309 | +---------------------+--------------------------------------------------+ |
| 310 | | :const:`max_exp` | maximum int e such that radix**(e-1) is in the | |
| 311 | | | range of finite representable floats | |
| 312 | +---------------------+--------------------------------------------------+ |
| 313 | | :const:`max_10_exp` | maximum int e such that 10**e is in the | |
| 314 | | | range of finite representable floats | |
| 315 | +---------------------+--------------------------------------------------+ |
| 316 | | :const:`min` | Minimum positive normalizer float | |
| 317 | +---------------------+--------------------------------------------------+ |
| 318 | | :const:`min_exp` | minimum int e such that radix**(e-1) is a | |
| 319 | | | normalized float | |
| 320 | +---------------------+--------------------------------------------------+ |
| 321 | | :const:`min_10_exp` | minimum int e such that 10**e is a normalized | |
| 322 | | | float | |
| 323 | +---------------------+--------------------------------------------------+ |
| 324 | | :const:`radix` | radix of exponent | |
| 325 | +---------------------+--------------------------------------------------+ |
| 326 | | :const:`rounds` | addition rounds (see :file:`float.h`) | |
| 327 | +---------------------+--------------------------------------------------+ |
| 328 | |
| 329 | .. note:: |
| 330 | |
| 331 | The information in the table is simplified. |
| 332 | |
Christian Heimes | 3e76d93 | 2007-12-01 15:40:22 +0000 | [diff] [blame] | 333 | .. versionadded:: 2.6 |
| 334 | |
Mark Dickinson | da8652d9 | 2009-10-24 14:01:08 +0000 | [diff] [blame] | 335 | .. data:: float_repr_style |
| 336 | |
| 337 | A string indicating how the :func:`repr` function behaves for |
| 338 | floats. If the string has value ``'short'`` then for a finite |
| 339 | float ``x``, ``repr(x)`` aims to produce a short string with the |
| 340 | property that ``float(repr(x)) == x``. This is the usual behaviour |
| 341 | in Python 2.7 and later. Otherwise, ``float_repr_style`` has value |
| 342 | ``'legacy'`` and ``repr(x)`` behaves in the same way as it did in |
| 343 | versions of Python prior to 2.7. |
| 344 | |
| 345 | .. versionadded:: 2.7 |
| 346 | |
Christian Heimes | dfdfaab | 2007-12-01 11:20:10 +0000 | [diff] [blame] | 347 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 348 | .. function:: getcheckinterval() |
| 349 | |
| 350 | Return the interpreter's "check interval"; see :func:`setcheckinterval`. |
| 351 | |
| 352 | .. versionadded:: 2.3 |
| 353 | |
| 354 | |
| 355 | .. function:: getdefaultencoding() |
| 356 | |
| 357 | Return the name of the current default string encoding used by the Unicode |
| 358 | implementation. |
| 359 | |
| 360 | .. versionadded:: 2.0 |
| 361 | |
| 362 | |
| 363 | .. function:: getdlopenflags() |
| 364 | |
| 365 | Return the current value of the flags that are used for :cfunc:`dlopen` calls. |
| 366 | The flag constants are defined in the :mod:`dl` and :mod:`DLFCN` modules. |
| 367 | Availability: Unix. |
| 368 | |
| 369 | .. versionadded:: 2.2 |
| 370 | |
| 371 | |
| 372 | .. function:: getfilesystemencoding() |
| 373 | |
| 374 | Return the name of the encoding used to convert Unicode filenames into system |
| 375 | file names, or ``None`` if the system default encoding is used. The result value |
| 376 | depends on the operating system: |
| 377 | |
| 378 | * On Windows 9x, the encoding is "mbcs". |
| 379 | |
| 380 | * On Mac OS X, the encoding is "utf-8". |
| 381 | |
| 382 | * On Unix, the encoding is the user's preference according to the result of |
| 383 | nl_langinfo(CODESET), or :const:`None` if the ``nl_langinfo(CODESET)`` failed. |
| 384 | |
| 385 | * On Windows NT+, file names are Unicode natively, so no conversion is |
| 386 | performed. :func:`getfilesystemencoding` still returns ``'mbcs'``, as this is |
| 387 | the encoding that applications should use when they explicitly want to convert |
| 388 | Unicode strings to byte strings that are equivalent when used as file names. |
| 389 | |
| 390 | .. versionadded:: 2.3 |
| 391 | |
| 392 | |
| 393 | .. function:: getrefcount(object) |
| 394 | |
| 395 | Return the reference count of the *object*. The count returned is generally one |
| 396 | higher than you might expect, because it includes the (temporary) reference as |
| 397 | an argument to :func:`getrefcount`. |
| 398 | |
| 399 | |
| 400 | .. function:: getrecursionlimit() |
| 401 | |
| 402 | Return the current value of the recursion limit, the maximum depth of the Python |
| 403 | interpreter stack. This limit prevents infinite recursion from causing an |
| 404 | overflow of the C stack and crashing Python. It can be set by |
| 405 | :func:`setrecursionlimit`. |
| 406 | |
| 407 | |
Robert Schuppenies | 4762902 | 2008-07-10 17:13:55 +0000 | [diff] [blame] | 408 | .. function:: getsizeof(object[, default]) |
Robert Schuppenies | 51df064 | 2008-06-01 16:16:17 +0000 | [diff] [blame] | 409 | |
| 410 | Return the size of an object in bytes. The object can be any type of |
| 411 | object. All built-in objects will return correct results, but this |
Robert Schuppenies | 4762902 | 2008-07-10 17:13:55 +0000 | [diff] [blame] | 412 | does not have to hold true for third-party extensions as it is implementation |
Robert Schuppenies | 51df064 | 2008-06-01 16:16:17 +0000 | [diff] [blame] | 413 | specific. |
| 414 | |
Benjamin Peterson | ca66cb5 | 2009-09-22 22:15:28 +0000 | [diff] [blame] | 415 | If given, *default* will be returned if the object does not provide means to |
| 416 | retrieve the size. Otherwise a `TypeError` will be raised. |
Robert Schuppenies | 4762902 | 2008-07-10 17:13:55 +0000 | [diff] [blame] | 417 | |
Benjamin Peterson | ca66cb5 | 2009-09-22 22:15:28 +0000 | [diff] [blame] | 418 | :func:`getsizeof` calls the object's ``__sizeof__`` method and adds an |
| 419 | additional garbage collector overhead if the object is managed by the garbage |
| 420 | collector. |
Robert Schuppenies | 4762902 | 2008-07-10 17:13:55 +0000 | [diff] [blame] | 421 | |
Robert Schuppenies | 51df064 | 2008-06-01 16:16:17 +0000 | [diff] [blame] | 422 | .. versionadded:: 2.6 |
| 423 | |
| 424 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 425 | .. function:: _getframe([depth]) |
| 426 | |
| 427 | Return a frame object from the call stack. If optional integer *depth* is |
| 428 | given, return the frame object that many calls below the top of the stack. If |
| 429 | that is deeper than the call stack, :exc:`ValueError` is raised. The default |
| 430 | for *depth* is zero, returning the frame at the top of the call stack. |
| 431 | |
Georg Brandl | 6c14e58 | 2009-10-22 11:48:10 +0000 | [diff] [blame] | 432 | .. impl-detail:: |
| 433 | |
| 434 | This function should be used for internal and specialized purposes only. |
| 435 | It is not guaranteed to exist in all implementations of Python. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 436 | |
| 437 | |
Georg Brandl | 5611289 | 2008-01-20 13:59:46 +0000 | [diff] [blame] | 438 | .. function:: getprofile() |
| 439 | |
| 440 | .. index:: |
| 441 | single: profile function |
| 442 | single: profiler |
| 443 | |
| 444 | Get the profiler function as set by :func:`setprofile`. |
| 445 | |
| 446 | .. versionadded:: 2.6 |
| 447 | |
| 448 | |
| 449 | .. function:: gettrace() |
| 450 | |
| 451 | .. index:: |
| 452 | single: trace function |
| 453 | single: debugger |
| 454 | |
| 455 | Get the trace function as set by :func:`settrace`. |
| 456 | |
Georg Brandl | 6c14e58 | 2009-10-22 11:48:10 +0000 | [diff] [blame] | 457 | .. impl-detail:: |
Georg Brandl | 5611289 | 2008-01-20 13:59:46 +0000 | [diff] [blame] | 458 | |
| 459 | The :func:`gettrace` function is intended only for implementing debuggers, |
Georg Brandl | 6c14e58 | 2009-10-22 11:48:10 +0000 | [diff] [blame] | 460 | profilers, coverage tools and the like. Its behavior is part of the |
| 461 | implementation platform, rather than part of the language definition, and |
| 462 | thus may not be available in all Python implementations. |
Georg Brandl | 5611289 | 2008-01-20 13:59:46 +0000 | [diff] [blame] | 463 | |
| 464 | .. versionadded:: 2.6 |
| 465 | |
| 466 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 467 | .. function:: getwindowsversion() |
| 468 | |
| 469 | Return a tuple containing five components, describing the Windows version |
| 470 | currently running. The elements are *major*, *minor*, *build*, *platform*, and |
| 471 | *text*. *text* contains a string while all other values are integers. |
| 472 | |
| 473 | *platform* may be one of the following values: |
| 474 | |
Jeroen Ruigrok van der Werven | aa3cadb | 2008-04-21 20:15:39 +0000 | [diff] [blame] | 475 | +-----------------------------------------+-------------------------+ |
| 476 | | Constant | Platform | |
| 477 | +=========================================+=========================+ |
| 478 | | :const:`0 (VER_PLATFORM_WIN32s)` | Win32s on Windows 3.1 | |
| 479 | +-----------------------------------------+-------------------------+ |
| 480 | | :const:`1 (VER_PLATFORM_WIN32_WINDOWS)` | Windows 95/98/ME | |
| 481 | +-----------------------------------------+-------------------------+ |
| 482 | | :const:`2 (VER_PLATFORM_WIN32_NT)` | Windows NT/2000/XP/x64 | |
| 483 | +-----------------------------------------+-------------------------+ |
| 484 | | :const:`3 (VER_PLATFORM_WIN32_CE)` | Windows CE | |
| 485 | +-----------------------------------------+-------------------------+ |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 486 | |
| 487 | This function wraps the Win32 :cfunc:`GetVersionEx` function; see the Microsoft |
| 488 | documentation for more information about these fields. |
| 489 | |
| 490 | Availability: Windows. |
| 491 | |
| 492 | .. versionadded:: 2.3 |
| 493 | |
| 494 | |
| 495 | .. data:: hexversion |
| 496 | |
| 497 | The version number encoded as a single integer. This is guaranteed to increase |
| 498 | with each version, including proper support for non-production releases. For |
| 499 | example, to test that the Python interpreter is at least version 1.5.2, use:: |
| 500 | |
| 501 | if sys.hexversion >= 0x010502F0: |
| 502 | # use some advanced feature |
| 503 | ... |
| 504 | else: |
| 505 | # use an alternative implementation or warn the user |
| 506 | ... |
| 507 | |
| 508 | This is called ``hexversion`` since it only really looks meaningful when viewed |
| 509 | as the result of passing it to the built-in :func:`hex` function. The |
| 510 | ``version_info`` value may be used for a more human-friendly encoding of the |
| 511 | same information. |
| 512 | |
| 513 | .. versionadded:: 1.5.2 |
| 514 | |
| 515 | |
Mark Dickinson | efc82f7 | 2009-03-20 15:51:55 +0000 | [diff] [blame] | 516 | .. data:: long_info |
| 517 | |
| 518 | A struct sequence that holds information about Python's |
| 519 | internal representation of integers. The attributes are read only. |
| 520 | |
| 521 | +-------------------------+----------------------------------------------+ |
| 522 | | attribute | explanation | |
| 523 | +=========================+==============================================+ |
| 524 | | :const:`bits_per_digit` | number of bits held in each digit. Python | |
| 525 | | | integers are stored internally in base | |
| 526 | | | ``2**long_info.bits_per_digit`` | |
| 527 | +-------------------------+----------------------------------------------+ |
| 528 | | :const:`sizeof_digit` | size in bytes of the C type used to | |
| 529 | | | represent a digit | |
| 530 | +-------------------------+----------------------------------------------+ |
| 531 | |
| 532 | .. versionadded:: 2.7 |
| 533 | |
| 534 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 535 | .. data:: last_type |
| 536 | last_value |
| 537 | last_traceback |
| 538 | |
| 539 | These three variables are not always defined; they are set when an exception is |
| 540 | not handled and the interpreter prints an error message and a stack traceback. |
| 541 | Their intended use is to allow an interactive user to import a debugger module |
| 542 | and engage in post-mortem debugging without having to re-execute the command |
| 543 | that caused the error. (Typical use is ``import pdb; pdb.pm()`` to enter the |
| 544 | post-mortem debugger; see chapter :ref:`debugger` for |
| 545 | more information.) |
| 546 | |
| 547 | The meaning of the variables is the same as that of the return values from |
| 548 | :func:`exc_info` above. (Since there is only one interactive thread, |
| 549 | thread-safety is not a concern for these variables, unlike for ``exc_type`` |
| 550 | etc.) |
| 551 | |
| 552 | |
| 553 | .. data:: maxint |
| 554 | |
| 555 | The largest positive integer supported by Python's regular integer type. This |
| 556 | is at least 2\*\*31-1. The largest negative integer is ``-maxint-1`` --- the |
| 557 | asymmetry results from the use of 2's complement binary arithmetic. |
| 558 | |
Martin v. Löwis | 4dd019f | 2008-05-20 08:11:19 +0000 | [diff] [blame] | 559 | .. data:: maxsize |
| 560 | |
| 561 | The largest positive integer supported by the platform's Py_ssize_t type, |
| 562 | and thus the maximum size lists, strings, dicts, and many other containers |
| 563 | can have. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 564 | |
| 565 | .. data:: maxunicode |
| 566 | |
| 567 | An integer giving the largest supported code point for a Unicode character. The |
| 568 | value of this depends on the configuration option that specifies whether Unicode |
| 569 | characters are stored as UCS-2 or UCS-4. |
| 570 | |
| 571 | |
Georg Brandl | 624f337 | 2009-03-31 16:11:45 +0000 | [diff] [blame] | 572 | .. data:: meta_path |
| 573 | |
| 574 | A list of :term:`finder` objects that have their :meth:`find_module` |
| 575 | methods called to see if one of the objects can find the module to be |
| 576 | imported. The :meth:`find_module` method is called at least with the |
| 577 | absolute name of the module being imported. If the module to be imported is |
| 578 | contained in package then the parent package's :attr:`__path__` attribute |
| 579 | is passed in as a second argument. The method returns :keyword:`None` if |
| 580 | the module cannot be found, else returns a :term:`loader`. |
| 581 | |
| 582 | :data:`sys.meta_path` is searched before any implicit default finders or |
| 583 | :data:`sys.path`. |
| 584 | |
| 585 | See :pep:`302` for the original specification. |
| 586 | |
| 587 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 588 | .. data:: modules |
| 589 | |
| 590 | .. index:: builtin: reload |
| 591 | |
| 592 | This is a dictionary that maps module names to modules which have already been |
| 593 | loaded. This can be manipulated to force reloading of modules and other tricks. |
| 594 | Note that removing a module from this dictionary is *not* the same as calling |
| 595 | :func:`reload` on the corresponding module object. |
| 596 | |
| 597 | |
| 598 | .. data:: path |
| 599 | |
| 600 | .. index:: triple: module; search; path |
| 601 | |
| 602 | A list of strings that specifies the search path for modules. Initialized from |
| 603 | the environment variable :envvar:`PYTHONPATH`, plus an installation-dependent |
| 604 | default. |
| 605 | |
| 606 | As initialized upon program startup, the first item of this list, ``path[0]``, |
| 607 | is the directory containing the script that was used to invoke the Python |
| 608 | interpreter. If the script directory is not available (e.g. if the interpreter |
| 609 | is invoked interactively or if the script is read from standard input), |
| 610 | ``path[0]`` is the empty string, which directs Python to search modules in the |
| 611 | current directory first. Notice that the script directory is inserted *before* |
| 612 | the entries inserted as a result of :envvar:`PYTHONPATH`. |
| 613 | |
| 614 | A program is free to modify this list for its own purposes. |
| 615 | |
| 616 | .. versionchanged:: 2.3 |
| 617 | Unicode strings are no longer ignored. |
| 618 | |
Benjamin Peterson | 4db53b2 | 2009-01-10 23:41:59 +0000 | [diff] [blame] | 619 | .. seealso:: |
| 620 | Module :mod:`site` This describes how to use .pth files to extend |
| 621 | :data:`sys.path`. |
| 622 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 623 | |
Georg Brandl | 624f337 | 2009-03-31 16:11:45 +0000 | [diff] [blame] | 624 | .. data:: path_hooks |
| 625 | |
| 626 | A list of callables that take a path argument to try to create a |
| 627 | :term:`finder` for the path. If a finder can be created, it is to be |
| 628 | returned by the callable, else raise :exc:`ImportError`. |
| 629 | |
| 630 | Originally specified in :pep:`302`. |
| 631 | |
| 632 | |
| 633 | .. data:: path_importer_cache |
| 634 | |
| 635 | A dictionary acting as a cache for :term:`finder` objects. The keys are |
| 636 | paths that have been passed to :data:`sys.path_hooks` and the values are |
| 637 | the finders that are found. If a path is a valid file system path but no |
| 638 | explicit finder is found on :data:`sys.path_hooks` then :keyword:`None` is |
| 639 | stored to represent the implicit default finder should be used. If the path |
| 640 | is not an existing path then :class:`imp.NullImporter` is set. |
| 641 | |
| 642 | Originally specified in :pep:`302`. |
| 643 | |
| 644 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 645 | .. data:: platform |
| 646 | |
Georg Brandl | 440f2ff | 2008-01-20 12:57:47 +0000 | [diff] [blame] | 647 | This string contains a platform identifier that can be used to append |
| 648 | platform-specific components to :data:`sys.path`, for instance. |
| 649 | |
| 650 | For Unix systems, this is the lowercased OS name as returned by ``uname -s`` |
| 651 | with the first part of the version as returned by ``uname -r`` appended, |
| 652 | e.g. ``'sunos5'`` or ``'linux2'``, *at the time when Python was built*. |
| 653 | For other systems, the values are: |
| 654 | |
| 655 | ================ =========================== |
| 656 | System :data:`platform` value |
| 657 | ================ =========================== |
| 658 | Windows ``'win32'`` |
| 659 | Windows/Cygwin ``'cygwin'`` |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 660 | Mac OS X ``'darwin'`` |
Georg Brandl | 440f2ff | 2008-01-20 12:57:47 +0000 | [diff] [blame] | 661 | OS/2 ``'os2'`` |
| 662 | OS/2 EMX ``'os2emx'`` |
| 663 | RiscOS ``'riscos'`` |
| 664 | AtheOS ``'atheos'`` |
| 665 | ================ =========================== |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 666 | |
| 667 | |
| 668 | .. data:: prefix |
| 669 | |
| 670 | A string giving the site-specific directory prefix where the platform |
| 671 | independent Python files are installed; by default, this is the string |
| 672 | ``'/usr/local'``. This can be set at build time with the :option:`--prefix` |
| 673 | argument to the :program:`configure` script. The main collection of Python |
| 674 | library modules is installed in the directory ``prefix + '/lib/pythonversion'`` |
| 675 | while the platform independent header files (all except :file:`pyconfig.h`) are |
| 676 | stored in ``prefix + '/include/pythonversion'``, where *version* is equal to |
| 677 | ``version[:3]``. |
| 678 | |
| 679 | |
| 680 | .. data:: ps1 |
| 681 | ps2 |
| 682 | |
| 683 | .. index:: |
| 684 | single: interpreter prompts |
| 685 | single: prompts, interpreter |
| 686 | |
| 687 | Strings specifying the primary and secondary prompt of the interpreter. These |
| 688 | are only defined if the interpreter is in interactive mode. Their initial |
| 689 | values in this case are ``'>>> '`` and ``'... '``. If a non-string object is |
| 690 | assigned to either variable, its :func:`str` is re-evaluated each time the |
| 691 | interpreter prepares to read a new interactive command; this can be used to |
| 692 | implement a dynamic prompt. |
| 693 | |
| 694 | |
Christian Heimes | d7b3337 | 2007-11-28 08:02:36 +0000 | [diff] [blame] | 695 | .. data:: py3kwarning |
| 696 | |
| 697 | Bool containing the status of the Python 3.0 warning flag. It's ``True`` |
Georg Brandl | 13813f7 | 2009-02-26 17:36:26 +0000 | [diff] [blame] | 698 | when Python is started with the -3 option. (This should be considered |
| 699 | read-only; setting it to a different value doesn't have an effect on |
| 700 | Python 3.0 warnings.) |
Christian Heimes | d7b3337 | 2007-11-28 08:02:36 +0000 | [diff] [blame] | 701 | |
Georg Brandl | 5f79446 | 2008-03-21 21:05:03 +0000 | [diff] [blame] | 702 | .. versionadded:: 2.6 |
| 703 | |
Christian Heimes | d7b3337 | 2007-11-28 08:02:36 +0000 | [diff] [blame] | 704 | |
Georg Brandl | 2da0fce | 2008-01-07 17:09:35 +0000 | [diff] [blame] | 705 | .. data:: dont_write_bytecode |
| 706 | |
| 707 | If this is true, Python won't try to write ``.pyc`` or ``.pyo`` files on the |
| 708 | import of source modules. This value is initially set to ``True`` or ``False`` |
| 709 | depending on the ``-B`` command line option and the ``PYTHONDONTWRITEBYTECODE`` |
| 710 | environment variable, but you can set it yourself to control bytecode file |
| 711 | generation. |
| 712 | |
| 713 | .. versionadded:: 2.6 |
| 714 | |
| 715 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 716 | .. function:: setcheckinterval(interval) |
| 717 | |
| 718 | Set the interpreter's "check interval". This integer value determines how often |
| 719 | the interpreter checks for periodic things such as thread switches and signal |
| 720 | handlers. The default is ``100``, meaning the check is performed every 100 |
| 721 | Python virtual instructions. Setting it to a larger value may increase |
| 722 | performance for programs using threads. Setting it to a value ``<=`` 0 checks |
| 723 | every virtual instruction, maximizing responsiveness as well as overhead. |
| 724 | |
| 725 | |
| 726 | .. function:: setdefaultencoding(name) |
| 727 | |
| 728 | Set the current default string encoding used by the Unicode implementation. If |
| 729 | *name* does not match any available encoding, :exc:`LookupError` is raised. |
| 730 | This function is only intended to be used by the :mod:`site` module |
| 731 | implementation and, where needed, by :mod:`sitecustomize`. Once used by the |
| 732 | :mod:`site` module, it is removed from the :mod:`sys` module's namespace. |
| 733 | |
Georg Brandl | b19be57 | 2007-12-29 10:57:00 +0000 | [diff] [blame] | 734 | .. Note that :mod:`site` is not imported if the :option:`-S` option is passed |
| 735 | to the interpreter, in which case this function will remain available. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 736 | |
| 737 | .. versionadded:: 2.0 |
| 738 | |
| 739 | |
| 740 | .. function:: setdlopenflags(n) |
| 741 | |
| 742 | Set the flags used by the interpreter for :cfunc:`dlopen` calls, such as when |
| 743 | the interpreter loads extension modules. Among other things, this will enable a |
| 744 | lazy resolving of symbols when importing a module, if called as |
| 745 | ``sys.setdlopenflags(0)``. To share symbols across extension modules, call as |
| 746 | ``sys.setdlopenflags(dl.RTLD_NOW | dl.RTLD_GLOBAL)``. Symbolic names for the |
| 747 | flag modules can be either found in the :mod:`dl` module, or in the :mod:`DLFCN` |
| 748 | module. If :mod:`DLFCN` is not available, it can be generated from |
| 749 | :file:`/usr/include/dlfcn.h` using the :program:`h2py` script. Availability: |
| 750 | Unix. |
| 751 | |
| 752 | .. versionadded:: 2.2 |
| 753 | |
| 754 | |
| 755 | .. function:: setprofile(profilefunc) |
| 756 | |
| 757 | .. index:: |
| 758 | single: profile function |
| 759 | single: profiler |
| 760 | |
| 761 | Set the system's profile function, which allows you to implement a Python source |
| 762 | code profiler in Python. See chapter :ref:`profile` for more information on the |
| 763 | Python profiler. The system's profile function is called similarly to the |
| 764 | system's trace function (see :func:`settrace`), but it isn't called for each |
| 765 | executed line of code (only on call and return, but the return event is reported |
| 766 | even when an exception has been set). The function is thread-specific, but |
| 767 | there is no way for the profiler to know about context switches between threads, |
| 768 | so it does not make sense to use this in the presence of multiple threads. Also, |
| 769 | its return value is not used, so it can simply return ``None``. |
| 770 | |
| 771 | |
| 772 | .. function:: setrecursionlimit(limit) |
| 773 | |
| 774 | Set the maximum depth of the Python interpreter stack to *limit*. This limit |
| 775 | prevents infinite recursion from causing an overflow of the C stack and crashing |
| 776 | Python. |
| 777 | |
| 778 | The highest possible limit is platform-dependent. A user may need to set the |
| 779 | limit higher when she has a program that requires deep recursion and a platform |
| 780 | that supports a higher limit. This should be done with care, because a too-high |
| 781 | limit can lead to a crash. |
| 782 | |
| 783 | |
| 784 | .. function:: settrace(tracefunc) |
| 785 | |
| 786 | .. index:: |
| 787 | single: trace function |
| 788 | single: debugger |
| 789 | |
| 790 | Set the system's trace function, which allows you to implement a Python |
Benjamin Peterson | 050f4ad | 2008-11-20 21:25:31 +0000 | [diff] [blame] | 791 | source code debugger in Python. The function is thread-specific; for a |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 792 | debugger to support multiple threads, it must be registered using |
| 793 | :func:`settrace` for each thread being debugged. |
| 794 | |
Benjamin Peterson | 5ab9c3b | 2008-11-20 04:05:12 +0000 | [diff] [blame] | 795 | Trace functions should have three arguments: *frame*, *event*, and |
| 796 | *arg*. *frame* is the current stack frame. *event* is a string: ``'call'``, |
| 797 | ``'line'``, ``'return'``, ``'exception'``, ``'c_call'``, ``'c_return'``, or |
| 798 | ``'c_exception'``. *arg* depends on the event type. |
| 799 | |
| 800 | The trace function is invoked (with *event* set to ``'call'``) whenever a new |
| 801 | local scope is entered; it should return a reference to a local trace |
| 802 | function to be used that scope, or ``None`` if the scope shouldn't be traced. |
| 803 | |
| 804 | The local trace function should return a reference to itself (or to another |
| 805 | function for further tracing in that scope), or ``None`` to turn off tracing |
| 806 | in that scope. |
| 807 | |
| 808 | The events have the following meaning: |
| 809 | |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 810 | ``'call'`` |
Benjamin Peterson | 5ab9c3b | 2008-11-20 04:05:12 +0000 | [diff] [blame] | 811 | A function is called (or some other code block entered). The |
| 812 | global trace function is called; *arg* is ``None``; the return value |
| 813 | specifies the local trace function. |
| 814 | |
| 815 | ``'line'`` |
Jeffrey Yasskin | 655d835 | 2009-05-23 23:23:01 +0000 | [diff] [blame] | 816 | The interpreter is about to execute a new line of code or re-execute the |
| 817 | condition of a loop. The local trace function is called; *arg* is |
| 818 | ``None``; the return value specifies the new local trace function. See |
| 819 | :file:`Objects/lnotab_notes.txt` for a detailed explanation of how this |
| 820 | works. |
Benjamin Peterson | 5ab9c3b | 2008-11-20 04:05:12 +0000 | [diff] [blame] | 821 | |
| 822 | ``'return'`` |
| 823 | A function (or other code block) is about to return. The local trace |
| 824 | function is called; *arg* is the value that will be returned. The trace |
| 825 | function's return value is ignored. |
| 826 | |
| 827 | ``'exception'`` |
| 828 | An exception has occurred. The local trace function is called; *arg* is a |
| 829 | tuple ``(exception, value, traceback)``; the return value specifies the |
| 830 | new local trace function. |
| 831 | |
| 832 | ``'c_call'`` |
| 833 | A C function is about to be called. This may be an extension function or |
Georg Brandl | d7d4fd7 | 2009-07-26 14:37:28 +0000 | [diff] [blame] | 834 | a built-in. *arg* is the C function object. |
Benjamin Peterson | 5ab9c3b | 2008-11-20 04:05:12 +0000 | [diff] [blame] | 835 | |
| 836 | ``'c_return'`` |
| 837 | A C function has returned. *arg* is ``None``. |
| 838 | |
| 839 | ``'c_exception'`` |
| 840 | A C function has thrown an exception. *arg* is ``None``. |
| 841 | |
Benjamin Peterson | 050f4ad | 2008-11-20 21:25:31 +0000 | [diff] [blame] | 842 | Note that as an exception is propagated down the chain of callers, an |
| 843 | ``'exception'`` event is generated at each level. |
Benjamin Peterson | 5ab9c3b | 2008-11-20 04:05:12 +0000 | [diff] [blame] | 844 | |
Benjamin Peterson | 050f4ad | 2008-11-20 21:25:31 +0000 | [diff] [blame] | 845 | For more information on code and frame objects, refer to :ref:`types`. |
Benjamin Peterson | 5ab9c3b | 2008-11-20 04:05:12 +0000 | [diff] [blame] | 846 | |
Georg Brandl | 6c14e58 | 2009-10-22 11:48:10 +0000 | [diff] [blame] | 847 | .. impl-detail:: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 848 | |
| 849 | The :func:`settrace` function is intended only for implementing debuggers, |
Georg Brandl | 6c14e58 | 2009-10-22 11:48:10 +0000 | [diff] [blame] | 850 | profilers, coverage tools and the like. Its behavior is part of the |
| 851 | implementation platform, rather than part of the language definition, and |
| 852 | thus may not be available in all Python implementations. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 853 | |
| 854 | |
| 855 | .. function:: settscdump(on_flag) |
| 856 | |
| 857 | Activate dumping of VM measurements using the Pentium timestamp counter, if |
| 858 | *on_flag* is true. Deactivate these dumps if *on_flag* is off. The function is |
| 859 | available only if Python was compiled with :option:`--with-tsc`. To understand |
| 860 | the output of this dump, read :file:`Python/ceval.c` in the Python sources. |
| 861 | |
| 862 | .. versionadded:: 2.4 |
| 863 | |
| 864 | |
| 865 | .. data:: stdin |
| 866 | stdout |
| 867 | stderr |
| 868 | |
| 869 | .. index:: |
| 870 | builtin: input |
| 871 | builtin: raw_input |
| 872 | |
| 873 | File objects corresponding to the interpreter's standard input, output and error |
| 874 | streams. ``stdin`` is used for all interpreter input except for scripts but |
| 875 | including calls to :func:`input` and :func:`raw_input`. ``stdout`` is used for |
Georg Brandl | 584265b | 2007-12-02 14:58:50 +0000 | [diff] [blame] | 876 | the output of :keyword:`print` and :term:`expression` statements and for the |
| 877 | prompts of :func:`input` and :func:`raw_input`. The interpreter's own prompts |
| 878 | and (almost all of) its error messages go to ``stderr``. ``stdout`` and |
| 879 | ``stderr`` needn't be built-in file objects: any object is acceptable as long |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 880 | as it has a :meth:`write` method that takes a string argument. (Changing these |
Georg Brandl | 584265b | 2007-12-02 14:58:50 +0000 | [diff] [blame] | 881 | objects doesn't affect the standard I/O streams of processes executed by |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 882 | :func:`os.popen`, :func:`os.system` or the :func:`exec\*` family of functions in |
| 883 | the :mod:`os` module.) |
| 884 | |
| 885 | |
| 886 | .. data:: __stdin__ |
| 887 | __stdout__ |
| 888 | __stderr__ |
| 889 | |
| 890 | These objects contain the original values of ``stdin``, ``stderr`` and |
Georg Brandl | b48adec | 2009-03-31 19:10:35 +0000 | [diff] [blame] | 891 | ``stdout`` at the start of the program. They are used during finalization, |
| 892 | and could be useful to print to the actual standard stream no matter if the |
| 893 | ``sys.std*`` object has been redirected. |
| 894 | |
| 895 | It can also be used to restore the actual files to known working file objects |
| 896 | in case they have been overwritten with a broken object. However, the |
| 897 | preferred way to do this is to explicitly save the previous stream before |
| 898 | replacing it, and restore the saved object. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 899 | |
| 900 | |
| 901 | .. data:: tracebacklimit |
| 902 | |
| 903 | When this variable is set to an integer value, it determines the maximum number |
| 904 | of levels of traceback information printed when an unhandled exception occurs. |
| 905 | The default is ``1000``. When set to ``0`` or less, all traceback information |
| 906 | is suppressed and only the exception type and value are printed. |
| 907 | |
| 908 | |
| 909 | .. data:: version |
| 910 | |
| 911 | A string containing the version number of the Python interpreter plus additional |
| 912 | information on the build number and compiler used. It has a value of the form |
| 913 | ``'version (#build_number, build_date, build_time) [compiler]'``. The first |
| 914 | three characters are used to identify the version in the installation |
| 915 | directories (where appropriate on each platform). An example:: |
| 916 | |
| 917 | >>> import sys |
| 918 | >>> sys.version |
| 919 | '1.5.2 (#0 Apr 13 1999, 10:51:12) [MSC 32 bit (Intel)]' |
| 920 | |
| 921 | |
| 922 | .. data:: api_version |
| 923 | |
| 924 | The C API version for this interpreter. Programmers may find this useful when |
| 925 | debugging version conflicts between Python and extension modules. |
| 926 | |
| 927 | .. versionadded:: 2.3 |
| 928 | |
| 929 | |
| 930 | .. data:: version_info |
| 931 | |
| 932 | A tuple containing the five components of the version number: *major*, *minor*, |
| 933 | *micro*, *releaselevel*, and *serial*. All values except *releaselevel* are |
| 934 | integers; the release level is ``'alpha'``, ``'beta'``, ``'candidate'``, or |
| 935 | ``'final'``. The ``version_info`` value corresponding to the Python version 2.0 |
Eric Smith | 81fe093 | 2009-02-06 00:48:26 +0000 | [diff] [blame] | 936 | is ``(2, 0, 0, 'final', 0)``. The components can also be accessed by name, |
| 937 | so ``sys.version_info[0]`` is equivalent to ``sys.version_info.major`` |
| 938 | and so on. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 939 | |
| 940 | .. versionadded:: 2.0 |
Eric Smith | 81fe093 | 2009-02-06 00:48:26 +0000 | [diff] [blame] | 941 | .. versionchanged:: 2.7 |
| 942 | Added named component attributes |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 943 | |
| 944 | |
| 945 | .. data:: warnoptions |
| 946 | |
| 947 | This is an implementation detail of the warnings framework; do not modify this |
| 948 | value. Refer to the :mod:`warnings` module for more information on the warnings |
| 949 | framework. |
| 950 | |
| 951 | |
| 952 | .. data:: winver |
| 953 | |
| 954 | The version number used to form registry keys on Windows platforms. This is |
| 955 | stored as string resource 1000 in the Python DLL. The value is normally the |
| 956 | first three characters of :const:`version`. It is provided in the :mod:`sys` |
| 957 | module for informational purposes; modifying this value has no effect on the |
| 958 | registry keys used by Python. Availability: Windows. |