blob: a52b0d6065355ce33ef5dddde632979ba4cf7992 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001
2:mod:`sys` --- System-specific parameters and functions
3=======================================================
4
5.. module:: sys
6 :synopsis: Access system-specific parameters and functions.
7
8
9This module provides access to some variables used or maintained by the
10interpreter and to functions that interact strongly with the interpreter. It is
11always 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
Georg Brandl8ec7f652007-08-15 14:28:01 +000035.. data:: builtin_module_names
36
37 A tuple of strings giving the names of all modules that are compiled into this
38 Python interpreter. (This information is not available in any other way ---
39 ``modules.keys()`` only lists the imported modules.)
40
41
Georg Brandlb8d0e362010-11-26 07:53:50 +000042.. function:: call_tracing(func, args)
43
44 Call ``func(*args)``, while tracing is enabled. The tracing state is saved,
45 and restored afterwards. This is intended to be called from a debugger from
46 a checkpoint, to recursively debug some other code.
47
48
Georg Brandl8ec7f652007-08-15 14:28:01 +000049.. data:: copyright
50
51 A string containing the copyright pertaining to the Python interpreter.
52
53
Christian Heimes422051a2008-02-04 18:00:12 +000054.. function:: _clear_type_cache()
55
56 Clear the internal type cache. The type cache is used to speed up attribute
57 and method lookups. Use the function *only* to drop unnecessary references
58 during reference leak debugging.
59
60 This function should be used for internal and specialized purposes only.
Christian Heimes908caac2008-01-27 23:34:59 +000061
62 .. versionadded:: 2.6
63
64
Georg Brandl8ec7f652007-08-15 14:28:01 +000065.. function:: _current_frames()
66
67 Return a dictionary mapping each thread's identifier to the topmost stack frame
68 currently active in that thread at the time the function is called. Note that
69 functions in the :mod:`traceback` module can build the call stack given such a
70 frame.
71
72 This is most useful for debugging deadlock: this function does not require the
73 deadlocked threads' cooperation, and such threads' call stacks are frozen for as
74 long as they remain deadlocked. The frame returned for a non-deadlocked thread
75 may bear no relationship to that thread's current activity by the time calling
76 code examines the frame.
77
78 This function should be used for internal and specialized purposes only.
79
80 .. versionadded:: 2.5
81
82
83.. data:: dllhandle
84
85 Integer specifying the handle of the Python DLL. Availability: Windows.
86
87
88.. function:: displayhook(value)
89
90 If *value* is not ``None``, this function prints it to ``sys.stdout``, and saves
91 it in ``__builtin__._``.
92
Georg Brandl584265b2007-12-02 14:58:50 +000093 ``sys.displayhook`` is called on the result of evaluating an :term:`expression`
94 entered in an interactive Python session. The display of these values can be
95 customized by assigning another one-argument function to ``sys.displayhook``.
Georg Brandl8ec7f652007-08-15 14:28:01 +000096
97
Éric Araujo656b04e2011-10-05 02:25:58 +020098.. data:: dont_write_bytecode
99
100 If this is true, Python won't try to write ``.pyc`` or ``.pyo`` files on the
101 import of source modules. This value is initially set to ``True`` or
102 ``False`` depending on the :option:`-B` command line option and the
103 :envvar:`PYTHONDONTWRITEBYTECODE` environment variable, but you can set it
104 yourself to control bytecode file generation.
105
106 .. versionadded:: 2.6
107
108
Georg Brandl8ec7f652007-08-15 14:28:01 +0000109.. function:: excepthook(type, value, traceback)
110
111 This function prints out a given traceback and exception to ``sys.stderr``.
112
113 When an exception is raised and uncaught, the interpreter calls
114 ``sys.excepthook`` with three arguments, the exception class, exception
115 instance, and a traceback object. In an interactive session this happens just
116 before control is returned to the prompt; in a Python program this happens just
117 before the program exits. The handling of such top-level exceptions can be
118 customized by assigning another three-argument function to ``sys.excepthook``.
119
120
121.. data:: __displayhook__
122 __excepthook__
123
124 These objects contain the original values of ``displayhook`` and ``excepthook``
125 at the start of the program. They are saved so that ``displayhook`` and
126 ``excepthook`` can be restored in case they happen to get replaced with broken
127 objects.
128
129
130.. function:: exc_info()
131
132 This function returns a tuple of three values that give information about the
133 exception that is currently being handled. The information returned is specific
134 both to the current thread and to the current stack frame. If the current stack
135 frame is not handling an exception, the information is taken from the calling
136 stack frame, or its caller, and so on until a stack frame is found that is
137 handling an exception. Here, "handling an exception" is defined as "executing
138 or having executed an except clause." For any stack frame, only information
139 about the most recently handled exception is accessible.
140
141 .. index:: object: traceback
142
143 If no exception is being handled anywhere on the stack, a tuple containing three
144 ``None`` values is returned. Otherwise, the values returned are ``(type, value,
145 traceback)``. Their meaning is: *type* gets the exception type of the exception
146 being handled (a class object); *value* gets the exception parameter (its
147 :dfn:`associated value` or the second argument to :keyword:`raise`, which is
148 always a class instance if the exception type is a class object); *traceback*
149 gets a traceback object (see the Reference Manual) which encapsulates the call
150 stack at the point where the exception originally occurred.
151
152 If :func:`exc_clear` is called, this function will return three ``None`` values
153 until either another exception is raised in the current thread or the execution
154 stack returns to a frame where another exception is being handled.
155
156 .. warning::
157
158 Assigning the *traceback* return value to a local variable in a function that is
159 handling an exception will cause a circular reference. This will prevent
160 anything referenced by a local variable in the same function or by the traceback
161 from being garbage collected. Since most functions don't need access to the
162 traceback, the best solution is to use something like ``exctype, value =
163 sys.exc_info()[:2]`` to extract only the exception type and value. If you do
164 need the traceback, make sure to delete it after use (best done with a
165 :keyword:`try` ... :keyword:`finally` statement) or to call :func:`exc_info` in
166 a function that does not itself handle an exception.
167
168 .. note::
169
170 Beginning with Python 2.2, such cycles are automatically reclaimed when garbage
171 collection is enabled and they become unreachable, but it remains more efficient
172 to avoid creating cycles.
173
174
175.. function:: exc_clear()
176
177 This function clears all information relating to the current or last exception
178 that occurred in the current thread. After calling this function,
179 :func:`exc_info` will return three ``None`` values until another exception is
180 raised in the current thread or the execution stack returns to a frame where
181 another exception is being handled.
182
183 This function is only needed in only a few obscure situations. These include
184 logging and error handling systems that report information on the last or
185 current exception. This function can also be used to try to free resources and
186 trigger object finalization, though no guarantee is made as to what objects will
187 be freed, if any.
188
189 .. versionadded:: 2.3
190
191
192.. data:: exc_type
193 exc_value
194 exc_traceback
195
196 .. deprecated:: 1.5
197 Use :func:`exc_info` instead.
198
199 Since they are global variables, they are not specific to the current thread, so
200 their use is not safe in a multi-threaded program. When no exception is being
201 handled, ``exc_type`` is set to ``None`` and the other two are undefined.
202
203
204.. data:: exec_prefix
205
206 A string giving the site-specific directory prefix where the platform-dependent
207 Python files are installed; by default, this is also ``'/usr/local'``. This can
Éric Araujoa8132ec2010-12-16 03:53:53 +0000208 be set at build time with the ``--exec-prefix`` argument to the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000209 :program:`configure` script. Specifically, all configuration files (e.g. the
Éric Araujo2e4a2b62011-10-05 02:34:28 +0200210 :file:`pyconfig.h` header file) are installed in the directory
211 :file:`{exec_prefix}/lib/python{X.Y}/config', and shared library modules are
212 installed in :file:`{exec_prefix}/lib/python{X.Y}/lib-dynload`, where *X.Y*
213 is the version number of Python, for example ``2.7``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000214
215
216.. data:: executable
217
Petri Lehtinenfe6f9d02012-02-02 21:11:28 +0200218 A string giving the absolute path of the executable binary for the Python
219 interpreter, on systems where this makes sense. If Python is unable to retrieve
220 the real path to its executable, :data:`sys.executable` will be an empty string
221 or ``None``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000222
223
224.. function:: exit([arg])
225
226 Exit from Python. This is implemented by raising the :exc:`SystemExit`
227 exception, so cleanup actions specified by finally clauses of :keyword:`try`
Georg Brandlb8d0e362010-11-26 07:53:50 +0000228 statements are honored, and it is possible to intercept the exit attempt at
229 an outer level.
230
231 The optional argument *arg* can be an integer giving the exit status
232 (defaulting to zero), or another type of object. If it is an integer, zero
233 is considered "successful termination" and any nonzero value is considered
234 "abnormal termination" by shells and the like. Most systems require it to be
235 in the range 0-127, and produce undefined results otherwise. Some systems
236 have a convention for assigning specific meanings to specific exit codes, but
237 these are generally underdeveloped; Unix programs generally use 2 for command
238 line syntax errors and 1 for all other kind of errors. If another type of
239 object is passed, ``None`` is equivalent to passing zero, and any other
240 object is printed to :data:`stderr` and results in an exit code of 1. In
241 particular, ``sys.exit("some error message")`` is a quick way to exit a
242 program when an error occurs.
243
244 Since :func:`exit` ultimately "only" raises an exception, it will only exit
245 the process when called from the main thread, and the exception is not
246 intercepted.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000247
248
249.. data:: exitfunc
250
251 This value is not actually defined by the module, but can be set by the user (or
252 by a program) to specify a clean-up action at program exit. When set, it should
253 be a parameterless function. This function will be called when the interpreter
254 exits. Only one function may be installed in this way; to allow multiple
255 functions which will be called at termination, use the :mod:`atexit` module.
256
257 .. note::
258
259 The exit function is not called when the program is killed by a signal, when a
260 Python fatal internal error is detected, or when ``os._exit()`` is called.
261
262 .. deprecated:: 2.4
263 Use :mod:`atexit` instead.
264
265
Christian Heimesf31b69f2008-01-14 03:42:48 +0000266.. data:: flags
267
268 The struct sequence *flags* exposes the status of command line flags. The
269 attributes are read only.
270
Éric Araujo254d4b82011-03-26 02:09:14 +0100271 ============================= ===================================
272 attribute flag
273 ============================= ===================================
274 :const:`debug` :option:`-d`
275 :const:`py3k_warning` :option:`-3`
276 :const:`division_warning` :option:`-Q`
277 :const:`division_new` :option:`-Qnew <-Q>`
278 :const:`inspect` :option:`-i`
279 :const:`interactive` :option:`-i`
280 :const:`optimize` :option:`-O` or :option:`-OO`
281 :const:`dont_write_bytecode` :option:`-B`
282 :const:`no_user_site` :option:`-s`
283 :const:`no_site` :option:`-S`
284 :const:`ignore_environment` :option:`-E`
285 :const:`tabcheck` :option:`-t` or :option:`-tt <-t>`
286 :const:`verbose` :option:`-v`
287 :const:`unicode` :option:`-U`
288 :const:`bytes_warning` :option:`-b`
289 ============================= ===================================
Christian Heimesf31b69f2008-01-14 03:42:48 +0000290
291 .. versionadded:: 2.6
292
293
Christian Heimesdfdfaab2007-12-01 11:20:10 +0000294.. data:: float_info
295
Christian Heimesc94e2b52008-01-14 04:13:37 +0000296 A structseq holding information about the float type. It contains low level
Mark Dickinson2547ce72010-07-02 18:06:52 +0000297 information about the precision and internal representation. The values
298 correspond to the various floating-point constants defined in the standard
299 header file :file:`float.h` for the 'C' programming language; see section
300 5.2.4.2.2 of the 1999 ISO/IEC C standard [C99]_, 'Characteristics of
301 floating types', for details.
Christian Heimesdfdfaab2007-12-01 11:20:10 +0000302
Mark Dickinson2547ce72010-07-02 18:06:52 +0000303 +---------------------+----------------+--------------------------------------------------+
304 | attribute | float.h macro | explanation |
305 +=====================+================+==================================================+
Mark Dickinson91a63342010-07-03 09:15:09 +0000306 | :const:`epsilon` | DBL_EPSILON | difference between 1 and the least value greater |
Mark Dickinson2547ce72010-07-02 18:06:52 +0000307 | | | than 1 that is representable as a float |
308 +---------------------+----------------+--------------------------------------------------+
309 | :const:`dig` | DBL_DIG | maximum number of decimal digits that can be |
310 | | | faithfully represented in a float; see below |
311 +---------------------+----------------+--------------------------------------------------+
312 | :const:`mant_dig` | DBL_MANT_DIG | float precision: the number of base-``radix`` |
313 | | | digits in the significand of a float |
314 +---------------------+----------------+--------------------------------------------------+
315 | :const:`max` | DBL_MAX | maximum representable finite float |
316 +---------------------+----------------+--------------------------------------------------+
317 | :const:`max_exp` | DBL_MAX_EXP | maximum integer e such that ``radix**(e-1)`` is |
318 | | | a representable finite float |
319 +---------------------+----------------+--------------------------------------------------+
320 | :const:`max_10_exp` | DBL_MAX_10_EXP | maximum integer e such that ``10**e`` is in the |
321 | | | range of representable finite floats |
322 +---------------------+----------------+--------------------------------------------------+
323 | :const:`min` | DBL_MIN | minimum positive normalized float |
324 +---------------------+----------------+--------------------------------------------------+
325 | :const:`min_exp` | DBL_MIN_EXP | minimum integer e such that ``radix**(e-1)`` is |
326 | | | a normalized float |
327 +---------------------+----------------+--------------------------------------------------+
328 | :const:`min_10_exp` | DBL_MIN_10_EXP | minimum integer e such that ``10**e`` is a |
329 | | | normalized float |
330 +---------------------+----------------+--------------------------------------------------+
331 | :const:`radix` | FLT_RADIX | radix of exponent representation |
332 +---------------------+----------------+--------------------------------------------------+
Mark Dickinsonb19284f2011-11-19 16:26:08 +0000333 | :const:`rounds` | FLT_ROUNDS | integer constant representing the rounding mode |
334 | | | used for arithmetic operations. This reflects |
335 | | | the value of the system FLT_ROUNDS macro at |
336 | | | interpreter startup time. See section 5.2.4.2.2 |
337 | | | of the C99 standard for an explanation of the |
338 | | | possible values and their meanings. |
Mark Dickinson2547ce72010-07-02 18:06:52 +0000339 +---------------------+----------------+--------------------------------------------------+
Christian Heimesdfdfaab2007-12-01 11:20:10 +0000340
Mark Dickinson2547ce72010-07-02 18:06:52 +0000341 The attribute :attr:`sys.float_info.dig` needs further explanation. If
342 ``s`` is any string representing a decimal number with at most
343 :attr:`sys.float_info.dig` significant digits, then converting ``s`` to a
344 float and back again will recover a string representing the same decimal
345 value::
Christian Heimesdfdfaab2007-12-01 11:20:10 +0000346
Mark Dickinson2547ce72010-07-02 18:06:52 +0000347 >>> import sys
348 >>> sys.float_info.dig
349 15
350 >>> s = '3.14159265358979' # decimal string with 15 significant digits
351 >>> format(float(s), '.15g') # convert to float and back -> same value
352 '3.14159265358979'
353
354 But for strings with more than :attr:`sys.float_info.dig` significant digits,
355 this isn't always true::
356
357 >>> s = '9876543211234567' # 16 significant digits is too many!
358 >>> format(float(s), '.16g') # conversion changes value
359 '9876543211234568'
Christian Heimesdfdfaab2007-12-01 11:20:10 +0000360
Christian Heimes3e76d932007-12-01 15:40:22 +0000361 .. versionadded:: 2.6
362
Mark Dickinsonda8652d92009-10-24 14:01:08 +0000363.. data:: float_repr_style
364
365 A string indicating how the :func:`repr` function behaves for
366 floats. If the string has value ``'short'`` then for a finite
367 float ``x``, ``repr(x)`` aims to produce a short string with the
368 property that ``float(repr(x)) == x``. This is the usual behaviour
369 in Python 2.7 and later. Otherwise, ``float_repr_style`` has value
370 ``'legacy'`` and ``repr(x)`` behaves in the same way as it did in
371 versions of Python prior to 2.7.
372
373 .. versionadded:: 2.7
374
Christian Heimesdfdfaab2007-12-01 11:20:10 +0000375
Georg Brandl8ec7f652007-08-15 14:28:01 +0000376.. function:: getcheckinterval()
377
378 Return the interpreter's "check interval"; see :func:`setcheckinterval`.
379
380 .. versionadded:: 2.3
381
382
383.. function:: getdefaultencoding()
384
385 Return the name of the current default string encoding used by the Unicode
386 implementation.
387
388 .. versionadded:: 2.0
389
390
391.. function:: getdlopenflags()
392
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100393 Return the current value of the flags that are used for :c:func:`dlopen` calls.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000394 The flag constants are defined in the :mod:`dl` and :mod:`DLFCN` modules.
395 Availability: Unix.
396
397 .. versionadded:: 2.2
398
399
400.. function:: getfilesystemencoding()
401
402 Return the name of the encoding used to convert Unicode filenames into system
403 file names, or ``None`` if the system default encoding is used. The result value
404 depends on the operating system:
405
Ezio Melottiab9149d2010-04-29 16:07:20 +0000406 * On Mac OS X, the encoding is ``'utf-8'``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000407
408 * On Unix, the encoding is the user's preference according to the result of
Ezio Melottiab9149d2010-04-29 16:07:20 +0000409 nl_langinfo(CODESET), or ``None`` if the ``nl_langinfo(CODESET)``
410 failed.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000411
412 * On Windows NT+, file names are Unicode natively, so no conversion is
Ezio Melottiab9149d2010-04-29 16:07:20 +0000413 performed. :func:`getfilesystemencoding` still returns ``'mbcs'``, as
414 this is the encoding that applications should use when they explicitly
415 want to convert Unicode strings to byte strings that are equivalent when
416 used as file names.
417
418 * On Windows 9x, the encoding is ``'mbcs'``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000419
420 .. versionadded:: 2.3
421
422
423.. function:: getrefcount(object)
424
425 Return the reference count of the *object*. The count returned is generally one
426 higher than you might expect, because it includes the (temporary) reference as
427 an argument to :func:`getrefcount`.
428
429
430.. function:: getrecursionlimit()
431
432 Return the current value of the recursion limit, the maximum depth of the Python
433 interpreter stack. This limit prevents infinite recursion from causing an
434 overflow of the C stack and crashing Python. It can be set by
435 :func:`setrecursionlimit`.
436
437
Robert Schuppenies47629022008-07-10 17:13:55 +0000438.. function:: getsizeof(object[, default])
Robert Schuppenies51df0642008-06-01 16:16:17 +0000439
440 Return the size of an object in bytes. The object can be any type of
441 object. All built-in objects will return correct results, but this
Robert Schuppenies47629022008-07-10 17:13:55 +0000442 does not have to hold true for third-party extensions as it is implementation
Robert Schuppenies51df0642008-06-01 16:16:17 +0000443 specific.
444
Benjamin Petersonca66cb52009-09-22 22:15:28 +0000445 If given, *default* will be returned if the object does not provide means to
Georg Brandlf6d367452010-03-12 10:02:03 +0000446 retrieve the size. Otherwise a :exc:`TypeError` will be raised.
Robert Schuppenies47629022008-07-10 17:13:55 +0000447
Benjamin Petersonca66cb52009-09-22 22:15:28 +0000448 :func:`getsizeof` calls the object's ``__sizeof__`` method and adds an
449 additional garbage collector overhead if the object is managed by the garbage
450 collector.
Robert Schuppenies47629022008-07-10 17:13:55 +0000451
Robert Schuppenies51df0642008-06-01 16:16:17 +0000452 .. versionadded:: 2.6
453
454
Georg Brandl8ec7f652007-08-15 14:28:01 +0000455.. function:: _getframe([depth])
456
457 Return a frame object from the call stack. If optional integer *depth* is
458 given, return the frame object that many calls below the top of the stack. If
459 that is deeper than the call stack, :exc:`ValueError` is raised. The default
460 for *depth* is zero, returning the frame at the top of the call stack.
461
Georg Brandl6c14e582009-10-22 11:48:10 +0000462 .. impl-detail::
463
464 This function should be used for internal and specialized purposes only.
465 It is not guaranteed to exist in all implementations of Python.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000466
467
Georg Brandl56112892008-01-20 13:59:46 +0000468.. function:: getprofile()
469
470 .. index::
471 single: profile function
472 single: profiler
473
474 Get the profiler function as set by :func:`setprofile`.
475
476 .. versionadded:: 2.6
477
478
479.. function:: gettrace()
480
481 .. index::
482 single: trace function
483 single: debugger
484
485 Get the trace function as set by :func:`settrace`.
486
Georg Brandl6c14e582009-10-22 11:48:10 +0000487 .. impl-detail::
Georg Brandl56112892008-01-20 13:59:46 +0000488
489 The :func:`gettrace` function is intended only for implementing debuggers,
Georg Brandl6c14e582009-10-22 11:48:10 +0000490 profilers, coverage tools and the like. Its behavior is part of the
491 implementation platform, rather than part of the language definition, and
492 thus may not be available in all Python implementations.
Georg Brandl56112892008-01-20 13:59:46 +0000493
494 .. versionadded:: 2.6
495
496
Georg Brandl8ec7f652007-08-15 14:28:01 +0000497.. function:: getwindowsversion()
498
Eric Smith096d0bf2010-01-27 00:55:16 +0000499 Return a named tuple describing the Windows version
Eric Smithee931b72010-01-27 00:28:29 +0000500 currently running. The named elements are *major*, *minor*,
501 *build*, *platform*, *service_pack*, *service_pack_minor*,
502 *service_pack_major*, *suite_mask*, and *product_type*.
503 *service_pack* contains a string while all other values are
504 integers. The components can also be accessed by name, so
505 ``sys.getwindowsversion()[0]`` is equivalent to
506 ``sys.getwindowsversion().major``. For compatibility with prior
507 versions, only the first 5 elements are retrievable by indexing.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000508
509 *platform* may be one of the following values:
510
Jeroen Ruigrok van der Wervenaa3cadb2008-04-21 20:15:39 +0000511 +-----------------------------------------+-------------------------+
512 | Constant | Platform |
513 +=========================================+=========================+
514 | :const:`0 (VER_PLATFORM_WIN32s)` | Win32s on Windows 3.1 |
515 +-----------------------------------------+-------------------------+
516 | :const:`1 (VER_PLATFORM_WIN32_WINDOWS)` | Windows 95/98/ME |
517 +-----------------------------------------+-------------------------+
518 | :const:`2 (VER_PLATFORM_WIN32_NT)` | Windows NT/2000/XP/x64 |
519 +-----------------------------------------+-------------------------+
520 | :const:`3 (VER_PLATFORM_WIN32_CE)` | Windows CE |
521 +-----------------------------------------+-------------------------+
Georg Brandl8ec7f652007-08-15 14:28:01 +0000522
Eric Smithee931b72010-01-27 00:28:29 +0000523 *product_type* may be one of the following values:
524
525 +---------------------------------------+---------------------------------+
526 | Constant | Meaning |
527 +=======================================+=================================+
528 | :const:`1 (VER_NT_WORKSTATION)` | The system is a workstation. |
529 +---------------------------------------+---------------------------------+
530 | :const:`2 (VER_NT_DOMAIN_CONTROLLER)` | The system is a domain |
531 | | controller. |
532 +---------------------------------------+---------------------------------+
533 | :const:`3 (VER_NT_SERVER)` | The system is a server, but not |
534 | | a domain controller. |
535 +---------------------------------------+---------------------------------+
536
537
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100538 This function wraps the Win32 :c:func:`GetVersionEx` function; see the
539 Microsoft documentation on :c:func:`OSVERSIONINFOEX` for more information
Eric Smithee931b72010-01-27 00:28:29 +0000540 about these fields.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000541
542 Availability: Windows.
543
544 .. versionadded:: 2.3
Eric Smithee931b72010-01-27 00:28:29 +0000545 .. versionchanged:: 2.7
546 Changed to a named tuple and added *service_pack_minor*,
547 *service_pack_major*, *suite_mask*, and *product_type*.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000548
549
550.. data:: hexversion
551
552 The version number encoded as a single integer. This is guaranteed to increase
553 with each version, including proper support for non-production releases. For
554 example, to test that the Python interpreter is at least version 1.5.2, use::
555
556 if sys.hexversion >= 0x010502F0:
557 # use some advanced feature
558 ...
559 else:
560 # use an alternative implementation or warn the user
561 ...
562
563 This is called ``hexversion`` since it only really looks meaningful when viewed
564 as the result of passing it to the built-in :func:`hex` function. The
565 ``version_info`` value may be used for a more human-friendly encoding of the
566 same information.
567
R David Murraydcaacbf2011-04-30 16:34:35 -0400568 The ``hexversion`` is a 32-bit number with the following layout:
R David Murraya0895db2011-04-25 16:10:18 -0400569
570 +-------------------------+------------------------------------------------+
R David Murraydcaacbf2011-04-30 16:34:35 -0400571 | Bits (big endian order) | Meaning |
R David Murraya0895db2011-04-25 16:10:18 -0400572 +=========================+================================================+
573 | :const:`1-8` | ``PY_MAJOR_VERSION`` (the ``2`` in |
574 | | ``2.1.0a3``) |
575 +-------------------------+------------------------------------------------+
576 | :const:`9-16` | ``PY_MINOR_VERSION`` (the ``1`` in |
577 | | ``2.1.0a3``) |
578 +-------------------------+------------------------------------------------+
579 | :const:`17-24` | ``PY_MICRO_VERSION`` (the ``0`` in |
580 | | ``2.1.0a3``) |
581 +-------------------------+------------------------------------------------+
582 | :const:`25-28` | ``PY_RELEASE_LEVEL`` (``0xA`` for alpha, |
R David Murraydcaacbf2011-04-30 16:34:35 -0400583 | | ``0xB`` for beta, ``0xC`` for release |
584 | | candidate and ``0xF`` for final) |
R David Murraya0895db2011-04-25 16:10:18 -0400585 +-------------------------+------------------------------------------------+
586 | :const:`29-32` | ``PY_RELEASE_SERIAL`` (the ``3`` in |
R David Murraydcaacbf2011-04-30 16:34:35 -0400587 | | ``2.1.0a3``, zero for final releases) |
R David Murraya0895db2011-04-25 16:10:18 -0400588 +-------------------------+------------------------------------------------+
589
R David Murraydcaacbf2011-04-30 16:34:35 -0400590 Thus ``2.1.0a3`` is hexversion ``0x020100a3``.
R David Murraya0895db2011-04-25 16:10:18 -0400591
Georg Brandl8ec7f652007-08-15 14:28:01 +0000592 .. versionadded:: 1.5.2
593
594
Mark Dickinsonefc82f72009-03-20 15:51:55 +0000595.. data:: long_info
596
597 A struct sequence that holds information about Python's
598 internal representation of integers. The attributes are read only.
599
600 +-------------------------+----------------------------------------------+
R David Murraydcaacbf2011-04-30 16:34:35 -0400601 | Attribute | Explanation |
Mark Dickinsonefc82f72009-03-20 15:51:55 +0000602 +=========================+==============================================+
603 | :const:`bits_per_digit` | number of bits held in each digit. Python |
604 | | integers are stored internally in base |
605 | | ``2**long_info.bits_per_digit`` |
606 +-------------------------+----------------------------------------------+
607 | :const:`sizeof_digit` | size in bytes of the C type used to |
608 | | represent a digit |
609 +-------------------------+----------------------------------------------+
610
611 .. versionadded:: 2.7
612
613
Georg Brandl8ec7f652007-08-15 14:28:01 +0000614.. data:: last_type
615 last_value
616 last_traceback
617
618 These three variables are not always defined; they are set when an exception is
619 not handled and the interpreter prints an error message and a stack traceback.
620 Their intended use is to allow an interactive user to import a debugger module
621 and engage in post-mortem debugging without having to re-execute the command
622 that caused the error. (Typical use is ``import pdb; pdb.pm()`` to enter the
623 post-mortem debugger; see chapter :ref:`debugger` for
624 more information.)
625
626 The meaning of the variables is the same as that of the return values from
627 :func:`exc_info` above. (Since there is only one interactive thread,
628 thread-safety is not a concern for these variables, unlike for ``exc_type``
629 etc.)
630
631
632.. data:: maxint
633
634 The largest positive integer supported by Python's regular integer type. This
635 is at least 2\*\*31-1. The largest negative integer is ``-maxint-1`` --- the
636 asymmetry results from the use of 2's complement binary arithmetic.
637
Martin v. Löwis4dd019f2008-05-20 08:11:19 +0000638.. data:: maxsize
639
640 The largest positive integer supported by the platform's Py_ssize_t type,
641 and thus the maximum size lists, strings, dicts, and many other containers
642 can have.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000643
644.. data:: maxunicode
645
646 An integer giving the largest supported code point for a Unicode character. The
647 value of this depends on the configuration option that specifies whether Unicode
648 characters are stored as UCS-2 or UCS-4.
649
650
Georg Brandl624f3372009-03-31 16:11:45 +0000651.. data:: meta_path
652
653 A list of :term:`finder` objects that have their :meth:`find_module`
654 methods called to see if one of the objects can find the module to be
655 imported. The :meth:`find_module` method is called at least with the
656 absolute name of the module being imported. If the module to be imported is
657 contained in package then the parent package's :attr:`__path__` attribute
Sandro Tosia76bb032012-01-14 16:43:14 +0100658 is passed in as a second argument. The method returns ``None`` if
Georg Brandl624f3372009-03-31 16:11:45 +0000659 the module cannot be found, else returns a :term:`loader`.
660
661 :data:`sys.meta_path` is searched before any implicit default finders or
662 :data:`sys.path`.
663
664 See :pep:`302` for the original specification.
665
666
Georg Brandl8ec7f652007-08-15 14:28:01 +0000667.. data:: modules
668
669 .. index:: builtin: reload
670
671 This is a dictionary that maps module names to modules which have already been
672 loaded. This can be manipulated to force reloading of modules and other tricks.
673 Note that removing a module from this dictionary is *not* the same as calling
674 :func:`reload` on the corresponding module object.
675
676
677.. data:: path
678
679 .. index:: triple: module; search; path
680
681 A list of strings that specifies the search path for modules. Initialized from
682 the environment variable :envvar:`PYTHONPATH`, plus an installation-dependent
683 default.
684
685 As initialized upon program startup, the first item of this list, ``path[0]``,
686 is the directory containing the script that was used to invoke the Python
687 interpreter. If the script directory is not available (e.g. if the interpreter
688 is invoked interactively or if the script is read from standard input),
689 ``path[0]`` is the empty string, which directs Python to search modules in the
690 current directory first. Notice that the script directory is inserted *before*
691 the entries inserted as a result of :envvar:`PYTHONPATH`.
692
693 A program is free to modify this list for its own purposes.
694
695 .. versionchanged:: 2.3
696 Unicode strings are no longer ignored.
697
Benjamin Peterson4db53b22009-01-10 23:41:59 +0000698 .. seealso::
699 Module :mod:`site` This describes how to use .pth files to extend
700 :data:`sys.path`.
701
Georg Brandl8ec7f652007-08-15 14:28:01 +0000702
Georg Brandl624f3372009-03-31 16:11:45 +0000703.. data:: path_hooks
704
705 A list of callables that take a path argument to try to create a
706 :term:`finder` for the path. If a finder can be created, it is to be
707 returned by the callable, else raise :exc:`ImportError`.
708
709 Originally specified in :pep:`302`.
710
711
712.. data:: path_importer_cache
713
714 A dictionary acting as a cache for :term:`finder` objects. The keys are
715 paths that have been passed to :data:`sys.path_hooks` and the values are
716 the finders that are found. If a path is a valid file system path but no
Sandro Tosia76bb032012-01-14 16:43:14 +0100717 explicit finder is found on :data:`sys.path_hooks` then ``None`` is
Georg Brandl624f3372009-03-31 16:11:45 +0000718 stored to represent the implicit default finder should be used. If the path
719 is not an existing path then :class:`imp.NullImporter` is set.
720
721 Originally specified in :pep:`302`.
722
723
Georg Brandl8ec7f652007-08-15 14:28:01 +0000724.. data:: platform
725
Georg Brandl440f2ff2008-01-20 12:57:47 +0000726 This string contains a platform identifier that can be used to append
727 platform-specific components to :data:`sys.path`, for instance.
728
Victor Stinnerd99ff292011-09-05 22:33:55 +0200729 For most Unix systems, this is the lowercased OS name as returned by ``uname
730 -s`` with the first part of the version as returned by ``uname -r`` appended,
731 e.g. ``'sunos5'``, *at the time when Python was built*. Unless you want to
732 test for a specific system version, it is therefore recommended to use the
733 following idiom::
Antoine Pitrouea901ad2011-07-09 15:48:29 +0200734
Victor Stinnerd99ff292011-09-05 22:33:55 +0200735 if sys.platform.startswith('freebsd'):
736 # FreeBSD-specific code here...
737 elif sys.platform.startswith('linux'):
Antoine Pitrouea901ad2011-07-09 15:48:29 +0200738 # Linux-specific code here...
739
Victor Stinnerd99ff292011-09-05 22:33:55 +0200740 .. versionchanged:: 2.7.3
741 Since lots of code check for ``sys.platform == 'linux2'``, and there is
742 no essential change between Linux 2.x and 3.x, ``sys.platform`` is always
743 set to ``'linux2'``, even on Linux 3.x. In Python 3.3 and later, the
744 value will always be set to ``'linux'``, so it is recommended to always
745 use the ``startswith`` idiom presented above.
746
Georg Brandl440f2ff2008-01-20 12:57:47 +0000747 For other systems, the values are:
748
Victor Stinnerd99ff292011-09-05 22:33:55 +0200749 ===================== ===========================
750 System :data:`platform` value
751 ===================== ===========================
752 Linux (2.x *and* 3.x) ``'linux2'``
753 Windows ``'win32'``
754 Windows/Cygwin ``'cygwin'``
755 Mac OS X ``'darwin'``
756 OS/2 ``'os2'``
757 OS/2 EMX ``'os2emx'``
758 RiscOS ``'riscos'``
759 AtheOS ``'atheos'``
760 ===================== ===========================
Georg Brandl8ec7f652007-08-15 14:28:01 +0000761
Antoine Pitrouea901ad2011-07-09 15:48:29 +0200762 .. seealso::
763 :attr:`os.name` has a coarser granularity. :func:`os.uname` gives
764 system-dependent version information.
765
766 The :mod:`platform` module provides detailed checks for the
767 system's identity.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000768
769.. data:: prefix
770
771 A string giving the site-specific directory prefix where the platform
772 independent Python files are installed; by default, this is the string
Éric Araujoa8132ec2010-12-16 03:53:53 +0000773 ``'/usr/local'``. This can be set at build time with the ``--prefix``
Georg Brandl8ec7f652007-08-15 14:28:01 +0000774 argument to the :program:`configure` script. The main collection of Python
Éric Araujo2e4a2b62011-10-05 02:34:28 +0200775 library modules is installed in the directory :file:`{prefix}/lib/python{X.Y}``
Georg Brandl8ec7f652007-08-15 14:28:01 +0000776 while the platform independent header files (all except :file:`pyconfig.h`) are
Éric Araujo2e4a2b62011-10-05 02:34:28 +0200777 stored in :file:`{prefix}/include/python{X.Y}``, where *X.Y* is the version
778 number of Python, for example ``2.7``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000779
780
781.. data:: ps1
782 ps2
783
784 .. index::
785 single: interpreter prompts
786 single: prompts, interpreter
787
788 Strings specifying the primary and secondary prompt of the interpreter. These
789 are only defined if the interpreter is in interactive mode. Their initial
790 values in this case are ``'>>> '`` and ``'... '``. If a non-string object is
791 assigned to either variable, its :func:`str` is re-evaluated each time the
792 interpreter prepares to read a new interactive command; this can be used to
793 implement a dynamic prompt.
794
795
Christian Heimesd7b33372007-11-28 08:02:36 +0000796.. data:: py3kwarning
797
798 Bool containing the status of the Python 3.0 warning flag. It's ``True``
Georg Brandl13813f72009-02-26 17:36:26 +0000799 when Python is started with the -3 option. (This should be considered
800 read-only; setting it to a different value doesn't have an effect on
801 Python 3.0 warnings.)
Christian Heimesd7b33372007-11-28 08:02:36 +0000802
Georg Brandl5f794462008-03-21 21:05:03 +0000803 .. versionadded:: 2.6
804
Christian Heimesd7b33372007-11-28 08:02:36 +0000805
Georg Brandl8ec7f652007-08-15 14:28:01 +0000806.. function:: setcheckinterval(interval)
807
808 Set the interpreter's "check interval". This integer value determines how often
809 the interpreter checks for periodic things such as thread switches and signal
810 handlers. The default is ``100``, meaning the check is performed every 100
811 Python virtual instructions. Setting it to a larger value may increase
812 performance for programs using threads. Setting it to a value ``<=`` 0 checks
813 every virtual instruction, maximizing responsiveness as well as overhead.
814
815
816.. function:: setdefaultencoding(name)
817
818 Set the current default string encoding used by the Unicode implementation. If
819 *name* does not match any available encoding, :exc:`LookupError` is raised.
820 This function is only intended to be used by the :mod:`site` module
821 implementation and, where needed, by :mod:`sitecustomize`. Once used by the
822 :mod:`site` module, it is removed from the :mod:`sys` module's namespace.
823
Georg Brandlb19be572007-12-29 10:57:00 +0000824 .. Note that :mod:`site` is not imported if the :option:`-S` option is passed
825 to the interpreter, in which case this function will remain available.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000826
827 .. versionadded:: 2.0
828
829
830.. function:: setdlopenflags(n)
831
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100832 Set the flags used by the interpreter for :c:func:`dlopen` calls, such as when
Georg Brandl8ec7f652007-08-15 14:28:01 +0000833 the interpreter loads extension modules. Among other things, this will enable a
834 lazy resolving of symbols when importing a module, if called as
835 ``sys.setdlopenflags(0)``. To share symbols across extension modules, call as
836 ``sys.setdlopenflags(dl.RTLD_NOW | dl.RTLD_GLOBAL)``. Symbolic names for the
837 flag modules can be either found in the :mod:`dl` module, or in the :mod:`DLFCN`
838 module. If :mod:`DLFCN` is not available, it can be generated from
839 :file:`/usr/include/dlfcn.h` using the :program:`h2py` script. Availability:
840 Unix.
841
842 .. versionadded:: 2.2
843
844
845.. function:: setprofile(profilefunc)
846
847 .. index::
848 single: profile function
849 single: profiler
850
851 Set the system's profile function, which allows you to implement a Python source
852 code profiler in Python. See chapter :ref:`profile` for more information on the
853 Python profiler. The system's profile function is called similarly to the
854 system's trace function (see :func:`settrace`), but it isn't called for each
855 executed line of code (only on call and return, but the return event is reported
856 even when an exception has been set). The function is thread-specific, but
857 there is no way for the profiler to know about context switches between threads,
858 so it does not make sense to use this in the presence of multiple threads. Also,
859 its return value is not used, so it can simply return ``None``.
860
861
862.. function:: setrecursionlimit(limit)
863
864 Set the maximum depth of the Python interpreter stack to *limit*. This limit
865 prevents infinite recursion from causing an overflow of the C stack and crashing
866 Python.
867
868 The highest possible limit is platform-dependent. A user may need to set the
869 limit higher when she has a program that requires deep recursion and a platform
870 that supports a higher limit. This should be done with care, because a too-high
871 limit can lead to a crash.
872
873
874.. function:: settrace(tracefunc)
875
876 .. index::
877 single: trace function
878 single: debugger
879
880 Set the system's trace function, which allows you to implement a Python
Benjamin Peterson050f4ad2008-11-20 21:25:31 +0000881 source code debugger in Python. The function is thread-specific; for a
Georg Brandl8ec7f652007-08-15 14:28:01 +0000882 debugger to support multiple threads, it must be registered using
883 :func:`settrace` for each thread being debugged.
884
Benjamin Peterson5ab9c3b2008-11-20 04:05:12 +0000885 Trace functions should have three arguments: *frame*, *event*, and
886 *arg*. *frame* is the current stack frame. *event* is a string: ``'call'``,
887 ``'line'``, ``'return'``, ``'exception'``, ``'c_call'``, ``'c_return'``, or
888 ``'c_exception'``. *arg* depends on the event type.
889
890 The trace function is invoked (with *event* set to ``'call'``) whenever a new
891 local scope is entered; it should return a reference to a local trace
892 function to be used that scope, or ``None`` if the scope shouldn't be traced.
893
894 The local trace function should return a reference to itself (or to another
895 function for further tracing in that scope), or ``None`` to turn off tracing
896 in that scope.
897
898 The events have the following meaning:
899
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000900 ``'call'``
Benjamin Peterson5ab9c3b2008-11-20 04:05:12 +0000901 A function is called (or some other code block entered). The
902 global trace function is called; *arg* is ``None``; the return value
903 specifies the local trace function.
904
905 ``'line'``
Jeffrey Yasskin655d8352009-05-23 23:23:01 +0000906 The interpreter is about to execute a new line of code or re-execute the
907 condition of a loop. The local trace function is called; *arg* is
908 ``None``; the return value specifies the new local trace function. See
909 :file:`Objects/lnotab_notes.txt` for a detailed explanation of how this
910 works.
Benjamin Peterson5ab9c3b2008-11-20 04:05:12 +0000911
912 ``'return'``
913 A function (or other code block) is about to return. The local trace
Georg Brandl78f11ed2010-11-26 07:34:20 +0000914 function is called; *arg* is the value that will be returned, or ``None``
915 if the event is caused by an exception being raised. The trace function's
916 return value is ignored.
Benjamin Peterson5ab9c3b2008-11-20 04:05:12 +0000917
918 ``'exception'``
919 An exception has occurred. The local trace function is called; *arg* is a
920 tuple ``(exception, value, traceback)``; the return value specifies the
921 new local trace function.
922
923 ``'c_call'``
924 A C function is about to be called. This may be an extension function or
Georg Brandld7d4fd72009-07-26 14:37:28 +0000925 a built-in. *arg* is the C function object.
Benjamin Peterson5ab9c3b2008-11-20 04:05:12 +0000926
927 ``'c_return'``
Georg Brandl78f11ed2010-11-26 07:34:20 +0000928 A C function has returned. *arg* is the C function object.
Benjamin Peterson5ab9c3b2008-11-20 04:05:12 +0000929
930 ``'c_exception'``
Georg Brandl78f11ed2010-11-26 07:34:20 +0000931 A C function has raised an exception. *arg* is the C function object.
Benjamin Peterson5ab9c3b2008-11-20 04:05:12 +0000932
Benjamin Peterson050f4ad2008-11-20 21:25:31 +0000933 Note that as an exception is propagated down the chain of callers, an
934 ``'exception'`` event is generated at each level.
Benjamin Peterson5ab9c3b2008-11-20 04:05:12 +0000935
Benjamin Peterson050f4ad2008-11-20 21:25:31 +0000936 For more information on code and frame objects, refer to :ref:`types`.
Benjamin Peterson5ab9c3b2008-11-20 04:05:12 +0000937
Georg Brandl6c14e582009-10-22 11:48:10 +0000938 .. impl-detail::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000939
940 The :func:`settrace` function is intended only for implementing debuggers,
Georg Brandl6c14e582009-10-22 11:48:10 +0000941 profilers, coverage tools and the like. Its behavior is part of the
942 implementation platform, rather than part of the language definition, and
943 thus may not be available in all Python implementations.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000944
945
946.. function:: settscdump(on_flag)
947
948 Activate dumping of VM measurements using the Pentium timestamp counter, if
949 *on_flag* is true. Deactivate these dumps if *on_flag* is off. The function is
Éric Araujoa8132ec2010-12-16 03:53:53 +0000950 available only if Python was compiled with ``--with-tsc``. To understand
Georg Brandl8ec7f652007-08-15 14:28:01 +0000951 the output of this dump, read :file:`Python/ceval.c` in the Python sources.
952
953 .. versionadded:: 2.4
954
Benjamin Petersona7fa0322010-03-06 03:13:33 +0000955 .. impl-detail::
956
957 This function is intimately bound to CPython implementation details and
958 thus not likely to be implemented elsewhere.
959
Georg Brandl8ec7f652007-08-15 14:28:01 +0000960
961.. data:: stdin
962 stdout
963 stderr
964
965 .. index::
966 builtin: input
967 builtin: raw_input
968
969 File objects corresponding to the interpreter's standard input, output and error
970 streams. ``stdin`` is used for all interpreter input except for scripts but
971 including calls to :func:`input` and :func:`raw_input`. ``stdout`` is used for
Georg Brandl584265b2007-12-02 14:58:50 +0000972 the output of :keyword:`print` and :term:`expression` statements and for the
973 prompts of :func:`input` and :func:`raw_input`. The interpreter's own prompts
974 and (almost all of) its error messages go to ``stderr``. ``stdout`` and
975 ``stderr`` needn't be built-in file objects: any object is acceptable as long
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000976 as it has a :meth:`write` method that takes a string argument. (Changing these
Georg Brandl584265b2007-12-02 14:58:50 +0000977 objects doesn't affect the standard I/O streams of processes executed by
Georg Brandl8ec7f652007-08-15 14:28:01 +0000978 :func:`os.popen`, :func:`os.system` or the :func:`exec\*` family of functions in
979 the :mod:`os` module.)
980
981
982.. data:: __stdin__
983 __stdout__
984 __stderr__
985
986 These objects contain the original values of ``stdin``, ``stderr`` and
Georg Brandlb48adec2009-03-31 19:10:35 +0000987 ``stdout`` at the start of the program. They are used during finalization,
988 and could be useful to print to the actual standard stream no matter if the
989 ``sys.std*`` object has been redirected.
990
991 It can also be used to restore the actual files to known working file objects
992 in case they have been overwritten with a broken object. However, the
993 preferred way to do this is to explicitly save the previous stream before
994 replacing it, and restore the saved object.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000995
996
Antoine Pitrou73705902011-07-09 16:06:19 +0200997.. data:: subversion
998
999 A triple (repo, branch, version) representing the Subversion information of the
1000 Python interpreter. *repo* is the name of the repository, ``'CPython'``.
1001 *branch* is a string of one of the forms ``'trunk'``, ``'branches/name'`` or
1002 ``'tags/name'``. *version* is the output of ``svnversion``, if the interpreter
1003 was built from a Subversion checkout; it contains the revision number (range)
1004 and possibly a trailing 'M' if there were local modifications. If the tree was
1005 exported (or svnversion was not available), it is the revision of
1006 ``Include/patchlevel.h`` if the branch is a tag. Otherwise, it is ``None``.
1007
1008 .. versionadded:: 2.5
1009
1010 .. note::
1011 Python is now `developed <http://docs.python.org/devguide/>`_ using
1012 Mercurial. In recent Python 2.7 bugfix releases, :data:`subversion`
1013 therefore contains placeholder information. It is removed in Python
1014 3.3.
1015
1016
Georg Brandl8ec7f652007-08-15 14:28:01 +00001017.. data:: tracebacklimit
1018
1019 When this variable is set to an integer value, it determines the maximum number
1020 of levels of traceback information printed when an unhandled exception occurs.
1021 The default is ``1000``. When set to ``0`` or less, all traceback information
1022 is suppressed and only the exception type and value are printed.
1023
1024
1025.. data:: version
1026
1027 A string containing the version number of the Python interpreter plus additional
Georg Brandle2773252010-08-01 19:14:56 +00001028 information on the build number and compiler used. This string is displayed
1029 when the interactive interpreter is started. Do not extract version information
1030 out of it, rather, use :data:`version_info` and the functions provided by the
1031 :mod:`platform` module.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001032
1033
1034.. data:: api_version
1035
1036 The C API version for this interpreter. Programmers may find this useful when
1037 debugging version conflicts between Python and extension modules.
1038
1039 .. versionadded:: 2.3
1040
1041
1042.. data:: version_info
1043
1044 A tuple containing the five components of the version number: *major*, *minor*,
1045 *micro*, *releaselevel*, and *serial*. All values except *releaselevel* are
1046 integers; the release level is ``'alpha'``, ``'beta'``, ``'candidate'``, or
1047 ``'final'``. The ``version_info`` value corresponding to the Python version 2.0
Eric Smith81fe0932009-02-06 00:48:26 +00001048 is ``(2, 0, 0, 'final', 0)``. The components can also be accessed by name,
1049 so ``sys.version_info[0]`` is equivalent to ``sys.version_info.major``
1050 and so on.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001051
1052 .. versionadded:: 2.0
Eric Smith81fe0932009-02-06 00:48:26 +00001053 .. versionchanged:: 2.7
1054 Added named component attributes
Georg Brandl8ec7f652007-08-15 14:28:01 +00001055
1056
1057.. data:: warnoptions
1058
1059 This is an implementation detail of the warnings framework; do not modify this
1060 value. Refer to the :mod:`warnings` module for more information on the warnings
1061 framework.
1062
1063
1064.. data:: winver
1065
1066 The version number used to form registry keys on Windows platforms. This is
1067 stored as string resource 1000 in the Python DLL. The value is normally the
1068 first three characters of :const:`version`. It is provided in the :mod:`sys`
1069 module for informational purposes; modifying this value has no effect on the
1070 registry keys used by Python. Availability: Windows.
Mark Dickinson2547ce72010-07-02 18:06:52 +00001071
1072.. rubric:: Citations
1073
1074.. [C99] ISO/IEC 9899:1999. "Programming languages -- C." A public draft of this standard is available at http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf .
1075