blob: d611acf74ac33e97e501caf25acfbe34abd6ebf8 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`sys` --- System-specific parameters and functions
2=======================================================
3
4.. module:: sys
5 :synopsis: Access system-specific parameters and functions.
6
7
8This module provides access to some variables used or maintained by the
9interpreter and to functions that interact strongly with the interpreter. It is
10always available.
11
12
Barry Warsawa40453d2010-10-16 14:17:50 +000013.. data:: abiflags
14
15 On POSIX systems where Python is build with the standard ``configure``
16 script, this contains the ABI flags as specified by :pep:`3149`.
17
18 .. versionadded:: 3.2
19
Georg Brandl116aa622007-08-15 14:28:22 +000020.. data:: argv
21
22 The list of command line arguments passed to a Python script. ``argv[0]`` is the
23 script name (it is operating system dependent whether this is a full pathname or
24 not). If the command was executed using the :option:`-c` command line option to
25 the interpreter, ``argv[0]`` is set to the string ``'-c'``. If no script name
26 was passed to the Python interpreter, ``argv[0]`` is the empty string.
27
28 To loop over the standard input, or the list of files given on the
29 command line, see the :mod:`fileinput` module.
30
31
32.. data:: byteorder
33
34 An indicator of the native byte order. This will have the value ``'big'`` on
35 big-endian (most-significant byte first) platforms, and ``'little'`` on
36 little-endian (least-significant byte first) platforms.
37
Georg Brandl116aa622007-08-15 14:28:22 +000038
Georg Brandl116aa622007-08-15 14:28:22 +000039.. data:: builtin_module_names
40
41 A tuple of strings giving the names of all modules that are compiled into this
42 Python interpreter. (This information is not available in any other way ---
43 ``modules.keys()`` only lists the imported modules.)
44
45
Georg Brandl85271262010-10-17 11:06:14 +000046.. function:: call_tracing(func, args)
47
48 Call ``func(*args)``, while tracing is enabled. The tracing state is saved,
49 and restored afterwards. This is intended to be called from a debugger from
50 a checkpoint, to recursively debug some other code.
51
52
Georg Brandl116aa622007-08-15 14:28:22 +000053.. data:: copyright
54
55 A string containing the copyright pertaining to the Python interpreter.
56
57
Christian Heimes15ebc882008-02-04 18:48:49 +000058.. function:: _clear_type_cache()
59
60 Clear the internal type cache. The type cache is used to speed up attribute
61 and method lookups. Use the function *only* to drop unnecessary references
62 during reference leak debugging.
63
64 This function should be used for internal and specialized purposes only.
Christian Heimes26855632008-01-27 23:50:43 +000065
Christian Heimes26855632008-01-27 23:50:43 +000066
Georg Brandl116aa622007-08-15 14:28:22 +000067.. function:: _current_frames()
68
69 Return a dictionary mapping each thread's identifier to the topmost stack frame
70 currently active in that thread at the time the function is called. Note that
71 functions in the :mod:`traceback` module can build the call stack given such a
72 frame.
73
74 This is most useful for debugging deadlock: this function does not require the
75 deadlocked threads' cooperation, and such threads' call stacks are frozen for as
76 long as they remain deadlocked. The frame returned for a non-deadlocked thread
77 may bear no relationship to that thread's current activity by the time calling
78 code examines the frame.
79
80 This function should be used for internal and specialized purposes only.
81
Georg Brandl116aa622007-08-15 14:28:22 +000082
83.. data:: dllhandle
84
85 Integer specifying the handle of the Python DLL. Availability: Windows.
86
87
88.. function:: displayhook(value)
89
Victor Stinner13d49ee2010-12-04 17:24:33 +000090 If *value* is not ``None``, this function prints ``repr(value)`` to
91 ``sys.stdout``, and saves *value* in ``builtins._``. If ``repr(value)`` is
92 not encodable to ``sys.stdout.encoding`` with ``sys.stdout.errors`` error
93 handler (which is probably ``'strict'``), encode it to
94 ``sys.stdout.encoding`` with ``'backslashreplace'`` error handler.
Georg Brandl116aa622007-08-15 14:28:22 +000095
Christian Heimesd8654cf2007-12-02 15:22:16 +000096 ``sys.displayhook`` is called on the result of evaluating an :term:`expression`
97 entered in an interactive Python session. The display of these values can be
98 customized by assigning another one-argument function to ``sys.displayhook``.
Georg Brandl116aa622007-08-15 14:28:22 +000099
Victor Stinner13d49ee2010-12-04 17:24:33 +0000100 Pseudo-code::
101
102 def displayhook(value):
103 if value is None:
104 return
105 # Set '_' to None to avoid recursion
106 builtins._ = None
107 text = repr(value)
108 try:
109 sys.stdout.write(text)
110 except UnicodeEncodeError:
111 bytes = text.encode(sys.stdout.encoding, 'backslashreplace')
112 if hasattr(sys.stdout, 'buffer'):
113 sys.stdout.buffer.write(bytes)
114 else:
115 text = bytes.decode(sys.stdout.encoding, 'strict')
116 sys.stdout.write(text)
117 sys.stdout.write("\n")
118 builtins._ = value
119
120 .. versionchanged:: 3.2
121 Use ``'backslashreplace'`` error handler on :exc:`UnicodeEncodeError`.
122
Georg Brandl116aa622007-08-15 14:28:22 +0000123
Éric Araujoda272632011-10-05 01:17:38 +0200124.. data:: dont_write_bytecode
125
126 If this is true, Python won't try to write ``.pyc`` or ``.pyo`` files on the
127 import of source modules. This value is initially set to ``True`` or
128 ``False`` depending on the :option:`-B` command line option and the
129 :envvar:`PYTHONDONTWRITEBYTECODE` environment variable, but you can set it
130 yourself to control bytecode file generation.
131
132
Georg Brandl116aa622007-08-15 14:28:22 +0000133.. function:: excepthook(type, value, traceback)
134
135 This function prints out a given traceback and exception to ``sys.stderr``.
136
137 When an exception is raised and uncaught, the interpreter calls
138 ``sys.excepthook`` with three arguments, the exception class, exception
139 instance, and a traceback object. In an interactive session this happens just
140 before control is returned to the prompt; in a Python program this happens just
141 before the program exits. The handling of such top-level exceptions can be
142 customized by assigning another three-argument function to ``sys.excepthook``.
143
144
145.. data:: __displayhook__
146 __excepthook__
147
148 These objects contain the original values of ``displayhook`` and ``excepthook``
149 at the start of the program. They are saved so that ``displayhook`` and
150 ``excepthook`` can be restored in case they happen to get replaced with broken
151 objects.
152
153
154.. function:: exc_info()
155
156 This function returns a tuple of three values that give information about the
157 exception that is currently being handled. The information returned is specific
158 both to the current thread and to the current stack frame. If the current stack
159 frame is not handling an exception, the information is taken from the calling
160 stack frame, or its caller, and so on until a stack frame is found that is
161 handling an exception. Here, "handling an exception" is defined as "executing
Benjamin Petersoneec3d712008-06-11 15:59:43 +0000162 an except clause." For any stack frame, only information about the exception
163 being currently handled is accessible.
Georg Brandl116aa622007-08-15 14:28:22 +0000164
165 .. index:: object: traceback
166
Georg Brandl482b1512010-03-21 09:02:59 +0000167 If no exception is being handled anywhere on the stack, a tuple containing
168 three ``None`` values is returned. Otherwise, the values returned are
169 ``(type, value, traceback)``. Their meaning is: *type* gets the type of the
170 exception being handled (a subclass of :exc:`BaseException`); *value* gets
171 the exception instance (an instance of the exception type); *traceback* gets
172 a traceback object (see the Reference Manual) which encapsulates the call
Georg Brandl116aa622007-08-15 14:28:22 +0000173 stack at the point where the exception originally occurred.
174
175 .. warning::
176
Georg Brandle6bcc912008-05-12 18:05:20 +0000177 Assigning the *traceback* return value to a local variable in a function
178 that is handling an exception will cause a circular reference. Since most
179 functions don't need access to the traceback, the best solution is to use
180 something like ``exctype, value = sys.exc_info()[:2]`` to extract only the
181 exception type and value. If you do need the traceback, make sure to
182 delete it after use (best done with a :keyword:`try`
183 ... :keyword:`finally` statement) or to call :func:`exc_info` in a
184 function that does not itself handle an exception.
Georg Brandl116aa622007-08-15 14:28:22 +0000185
Georg Brandle6bcc912008-05-12 18:05:20 +0000186 Such cycles are normally automatically reclaimed when garbage collection
187 is enabled and they become unreachable, but it remains more efficient to
188 avoid creating cycles.
Georg Brandl116aa622007-08-15 14:28:22 +0000189
190
191.. data:: exec_prefix
192
193 A string giving the site-specific directory prefix where the platform-dependent
194 Python files are installed; by default, this is also ``'/usr/local'``. This can
Éric Araujo713d3032010-11-18 16:38:46 +0000195 be set at build time with the ``--exec-prefix`` argument to the
Georg Brandl116aa622007-08-15 14:28:22 +0000196 :program:`configure` script. Specifically, all configuration files (e.g. the
Éric Araujo58a91532011-10-05 01:28:24 +0200197 :file:`pyconfig.h` header file) are installed in the directory
198 :file:`{exec_prefix}/lib/python{X.Y}/config', and shared library modules are
199 installed in :file:`{exec_prefix}/lib/python{X.Y}/lib-dynload`, where *X.Y*
200 is the version number of Python, for example ``3.2``.
Georg Brandl116aa622007-08-15 14:28:22 +0000201
202
203.. data:: executable
204
Petri Lehtinen97133212012-02-02 20:59:48 +0200205 A string giving the absolute path of the executable binary for the Python
206 interpreter, on systems where this makes sense. If Python is unable to retrieve
207 the real path to its executable, :data:`sys.executable` will be an empty string
208 or ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000209
210
211.. function:: exit([arg])
212
213 Exit from Python. This is implemented by raising the :exc:`SystemExit`
214 exception, so cleanup actions specified by finally clauses of :keyword:`try`
Georg Brandl6f4e68d2010-10-17 10:51:45 +0000215 statements are honored, and it is possible to intercept the exit attempt at
216 an outer level.
217
218 The optional argument *arg* can be an integer giving the exit status
219 (defaulting to zero), or another type of object. If it is an integer, zero
220 is considered "successful termination" and any nonzero value is considered
221 "abnormal termination" by shells and the like. Most systems require it to be
222 in the range 0-127, and produce undefined results otherwise. Some systems
223 have a convention for assigning specific meanings to specific exit codes, but
224 these are generally underdeveloped; Unix programs generally use 2 for command
225 line syntax errors and 1 for all other kind of errors. If another type of
226 object is passed, ``None`` is equivalent to passing zero, and any other
227 object is printed to :data:`stderr` and results in an exit code of 1. In
228 particular, ``sys.exit("some error message")`` is a quick way to exit a
229 program when an error occurs.
230
231 Since :func:`exit` ultimately "only" raises an exception, it will only exit
232 the process when called from the main thread, and the exception is not
233 intercepted.
Georg Brandl116aa622007-08-15 14:28:22 +0000234
235
Christian Heimesd32ed6f2008-01-14 18:49:24 +0000236.. data:: flags
237
238 The struct sequence *flags* exposes the status of command line flags. The
239 attributes are read only.
240
Éric Araujo5ab47762011-03-26 00:47:04 +0100241 ============================= =============================
242 attribute flag
243 ============================= =============================
244 :const:`debug` :option:`-d`
245 :const:`division_warning` :option:`-Q`
246 :const:`inspect` :option:`-i`
247 :const:`interactive` :option:`-i`
248 :const:`optimize` :option:`-O` or :option:`-OO`
249 :const:`dont_write_bytecode` :option:`-B`
250 :const:`no_user_site` :option:`-s`
251 :const:`no_site` :option:`-S`
252 :const:`ignore_environment` :option:`-E`
253 :const:`verbose` :option:`-v`
254 :const:`bytes_warning` :option:`-b`
Éric Araujo722bec42011-03-26 01:59:47 +0100255 :const:`quiet` :option:`-q`
Éric Araujo5ab47762011-03-26 00:47:04 +0100256 ============================= =============================
Georg Brandl8aa7e992010-12-28 18:30:18 +0000257
258 .. versionchanged:: 3.2
259 Added ``quiet`` attribute for the new :option:`-q` flag.
Christian Heimesd32ed6f2008-01-14 18:49:24 +0000260
Christian Heimesd32ed6f2008-01-14 18:49:24 +0000261
Christian Heimes93852662007-12-01 12:22:32 +0000262.. data:: float_info
263
Christian Heimesd32ed6f2008-01-14 18:49:24 +0000264 A structseq holding information about the float type. It contains low level
Mark Dickinsonbe5846b2010-07-02 20:26:07 +0000265 information about the precision and internal representation. The values
266 correspond to the various floating-point constants defined in the standard
267 header file :file:`float.h` for the 'C' programming language; see section
268 5.2.4.2.2 of the 1999 ISO/IEC C standard [C99]_, 'Characteristics of
269 floating types', for details.
Christian Heimes93852662007-12-01 12:22:32 +0000270
Mark Dickinsonbe5846b2010-07-02 20:26:07 +0000271 +---------------------+----------------+--------------------------------------------------+
272 | attribute | float.h macro | explanation |
273 +=====================+================+==================================================+
Mark Dickinson39af05f2010-07-03 09:17:16 +0000274 | :const:`epsilon` | DBL_EPSILON | difference between 1 and the least value greater |
Mark Dickinsonbe5846b2010-07-02 20:26:07 +0000275 | | | than 1 that is representable as a float |
276 +---------------------+----------------+--------------------------------------------------+
277 | :const:`dig` | DBL_DIG | maximum number of decimal digits that can be |
278 | | | faithfully represented in a float; see below |
279 +---------------------+----------------+--------------------------------------------------+
280 | :const:`mant_dig` | DBL_MANT_DIG | float precision: the number of base-``radix`` |
281 | | | digits in the significand of a float |
282 +---------------------+----------------+--------------------------------------------------+
283 | :const:`max` | DBL_MAX | maximum representable finite float |
284 +---------------------+----------------+--------------------------------------------------+
285 | :const:`max_exp` | DBL_MAX_EXP | maximum integer e such that ``radix**(e-1)`` is |
286 | | | a representable finite float |
287 +---------------------+----------------+--------------------------------------------------+
288 | :const:`max_10_exp` | DBL_MAX_10_EXP | maximum integer e such that ``10**e`` is in the |
289 | | | range of representable finite floats |
290 +---------------------+----------------+--------------------------------------------------+
291 | :const:`min` | DBL_MIN | minimum positive normalized float |
292 +---------------------+----------------+--------------------------------------------------+
293 | :const:`min_exp` | DBL_MIN_EXP | minimum integer e such that ``radix**(e-1)`` is |
294 | | | a normalized float |
295 +---------------------+----------------+--------------------------------------------------+
296 | :const:`min_10_exp` | DBL_MIN_10_EXP | minimum integer e such that ``10**e`` is a |
297 | | | normalized float |
298 +---------------------+----------------+--------------------------------------------------+
299 | :const:`radix` | FLT_RADIX | radix of exponent representation |
300 +---------------------+----------------+--------------------------------------------------+
Mark Dickinsonb1e58fe2011-11-19 16:26:45 +0000301 | :const:`rounds` | FLT_ROUNDS | integer constant representing the rounding mode |
302 | | | used for arithmetic operations. This reflects |
303 | | | the value of the system FLT_ROUNDS macro at |
304 | | | interpreter startup time. See section 5.2.4.2.2 |
305 | | | of the C99 standard for an explanation of the |
306 | | | possible values and their meanings. |
Mark Dickinsonbe5846b2010-07-02 20:26:07 +0000307 +---------------------+----------------+--------------------------------------------------+
Christian Heimes93852662007-12-01 12:22:32 +0000308
Mark Dickinsonbe5846b2010-07-02 20:26:07 +0000309 The attribute :attr:`sys.float_info.dig` needs further explanation. If
310 ``s`` is any string representing a decimal number with at most
311 :attr:`sys.float_info.dig` significant digits, then converting ``s`` to a
312 float and back again will recover a string representing the same decimal
313 value::
Christian Heimes93852662007-12-01 12:22:32 +0000314
Mark Dickinsonbe5846b2010-07-02 20:26:07 +0000315 >>> import sys
316 >>> sys.float_info.dig
317 15
318 >>> s = '3.14159265358979' # decimal string with 15 significant digits
319 >>> format(float(s), '.15g') # convert to float and back -> same value
320 '3.14159265358979'
Christian Heimes93852662007-12-01 12:22:32 +0000321
Mark Dickinsonbe5846b2010-07-02 20:26:07 +0000322 But for strings with more than :attr:`sys.float_info.dig` significant digits,
323 this isn't always true::
324
325 >>> s = '9876543211234567' # 16 significant digits is too many!
326 >>> format(float(s), '.16g') # conversion changes value
327 '9876543211234568'
Christian Heimes93852662007-12-01 12:22:32 +0000328
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000329.. data:: float_repr_style
330
331 A string indicating how the :func:`repr` function behaves for
332 floats. If the string has value ``'short'`` then for a finite
333 float ``x``, ``repr(x)`` aims to produce a short string with the
334 property that ``float(repr(x)) == x``. This is the usual behaviour
335 in Python 3.1 and later. Otherwise, ``float_repr_style`` has value
336 ``'legacy'`` and ``repr(x)`` behaves in the same way as it did in
337 versions of Python prior to 3.1.
338
339 .. versionadded:: 3.1
340
341
Georg Brandl116aa622007-08-15 14:28:22 +0000342.. function:: getcheckinterval()
343
344 Return the interpreter's "check interval"; see :func:`setcheckinterval`.
345
Antoine Pitroud42bc512009-11-10 23:18:31 +0000346 .. deprecated:: 3.2
347 Use :func:`getswitchinterval` instead.
348
Georg Brandl116aa622007-08-15 14:28:22 +0000349
350.. function:: getdefaultencoding()
351
352 Return the name of the current default string encoding used by the Unicode
353 implementation.
354
Georg Brandl116aa622007-08-15 14:28:22 +0000355
356.. function:: getdlopenflags()
357
Georg Brandl60203b42010-10-06 10:11:56 +0000358 Return the current value of the flags that are used for :c:func:`dlopen` calls.
Neal Norwitz6cf49cf2008-03-24 06:22:57 +0000359 The flag constants are defined in the :mod:`ctypes` and :mod:`DLFCN` modules.
Georg Brandl116aa622007-08-15 14:28:22 +0000360 Availability: Unix.
361
Georg Brandl116aa622007-08-15 14:28:22 +0000362
363.. function:: getfilesystemencoding()
364
Victor Stinnerb744ba12010-05-15 12:27:16 +0000365 Return the name of the encoding used to convert Unicode filenames into
366 system file names. The result value depends on the operating system:
Georg Brandl116aa622007-08-15 14:28:22 +0000367
Ezio Melottid5334e12010-04-29 16:24:51 +0000368 * On Mac OS X, the encoding is ``'utf-8'``.
Georg Brandl116aa622007-08-15 14:28:22 +0000369
370 * On Unix, the encoding is the user's preference according to the result of
Victor Stinnerb744ba12010-05-15 12:27:16 +0000371 nl_langinfo(CODESET), or ``'utf-8'`` if ``nl_langinfo(CODESET)`` failed.
Georg Brandl116aa622007-08-15 14:28:22 +0000372
373 * On Windows NT+, file names are Unicode natively, so no conversion is
Ezio Melottid5334e12010-04-29 16:24:51 +0000374 performed. :func:`getfilesystemencoding` still returns ``'mbcs'``, as
375 this is the encoding that applications should use when they explicitly
376 want to convert Unicode strings to byte strings that are equivalent when
377 used as file names.
378
379 * On Windows 9x, the encoding is ``'mbcs'``.
Georg Brandl116aa622007-08-15 14:28:22 +0000380
Victor Stinnerb744ba12010-05-15 12:27:16 +0000381 .. versionchanged:: 3.2
382 On Unix, use ``'utf-8'`` instead of ``None`` if ``nl_langinfo(CODESET)``
383 failed. :func:`getfilesystemencoding` result cannot be ``None``.
384
Georg Brandl116aa622007-08-15 14:28:22 +0000385
386.. function:: getrefcount(object)
387
388 Return the reference count of the *object*. The count returned is generally one
389 higher than you might expect, because it includes the (temporary) reference as
390 an argument to :func:`getrefcount`.
391
392
393.. function:: getrecursionlimit()
394
395 Return the current value of the recursion limit, the maximum depth of the Python
396 interpreter stack. This limit prevents infinite recursion from causing an
397 overflow of the C stack and crashing Python. It can be set by
398 :func:`setrecursionlimit`.
399
400
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000401.. function:: getsizeof(object[, default])
Martin v. Löwis00709aa2008-06-04 14:18:43 +0000402
403 Return the size of an object in bytes. The object can be any type of
404 object. All built-in objects will return correct results, but this
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000405 does not have to hold true for third-party extensions as it is implementation
Martin v. Löwis00709aa2008-06-04 14:18:43 +0000406 specific.
407
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000408 If given, *default* will be returned if the object does not provide means to
Georg Brandlef871f62010-03-12 10:06:40 +0000409 retrieve the size. Otherwise a :exc:`TypeError` will be raised.
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000410
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000411 :func:`getsizeof` calls the object's ``__sizeof__`` method and adds an
412 additional garbage collector overhead if the object is managed by the garbage
413 collector.
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000414
Raymond Hettingerc539a2a2010-12-17 23:31:30 +0000415 See `recursive sizeof recipe <http://code.activestate.com/recipes/577504>`_
416 for an example of using :func:`getsizeof` recursively to find the size of
417 containers and all their contents.
Martin v. Löwis00709aa2008-06-04 14:18:43 +0000418
Antoine Pitroud42bc512009-11-10 23:18:31 +0000419.. function:: getswitchinterval()
420
421 Return the interpreter's "thread switch interval"; see
422 :func:`setswitchinterval`.
423
Antoine Pitrou79707ca2009-11-11 22:03:32 +0000424 .. versionadded:: 3.2
425
Antoine Pitroud42bc512009-11-10 23:18:31 +0000426
Georg Brandl116aa622007-08-15 14:28:22 +0000427.. function:: _getframe([depth])
428
429 Return a frame object from the call stack. If optional integer *depth* is
430 given, return the frame object that many calls below the top of the stack. If
431 that is deeper than the call stack, :exc:`ValueError` is raised. The default
432 for *depth* is zero, returning the frame at the top of the call stack.
433
Georg Brandl495f7b52009-10-27 15:28:25 +0000434 .. impl-detail::
435
436 This function should be used for internal and specialized purposes only.
437 It is not guaranteed to exist in all implementations of Python.
Georg Brandl116aa622007-08-15 14:28:22 +0000438
439
Christian Heimes9bd667a2008-01-20 15:14:11 +0000440.. function:: getprofile()
441
442 .. index::
443 single: profile function
444 single: profiler
445
446 Get the profiler function as set by :func:`setprofile`.
447
Christian Heimes9bd667a2008-01-20 15:14:11 +0000448
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 Brandl495f7b52009-10-27 15:28:25 +0000457 .. impl-detail::
Christian Heimes9bd667a2008-01-20 15:14:11 +0000458
459 The :func:`gettrace` function is intended only for implementing debuggers,
Georg Brandl495f7b52009-10-27 15:28:25 +0000460 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.
Christian Heimes9bd667a2008-01-20 15:14:11 +0000463
Christian Heimes9bd667a2008-01-20 15:14:11 +0000464
Georg Brandl116aa622007-08-15 14:28:22 +0000465.. function:: getwindowsversion()
466
Eric Smith7338a392010-01-27 00:56:30 +0000467 Return a named tuple describing the Windows version
Eric Smithf7bb5782010-01-27 00:44:57 +0000468 currently running. The named elements are *major*, *minor*,
469 *build*, *platform*, *service_pack*, *service_pack_minor*,
470 *service_pack_major*, *suite_mask*, and *product_type*.
471 *service_pack* contains a string while all other values are
472 integers. The components can also be accessed by name, so
473 ``sys.getwindowsversion()[0]`` is equivalent to
474 ``sys.getwindowsversion().major``. For compatibility with prior
475 versions, only the first 5 elements are retrievable by indexing.
Georg Brandl116aa622007-08-15 14:28:22 +0000476
477 *platform* may be one of the following values:
478
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000479 +-----------------------------------------+-------------------------+
480 | Constant | Platform |
481 +=========================================+=========================+
482 | :const:`0 (VER_PLATFORM_WIN32s)` | Win32s on Windows 3.1 |
483 +-----------------------------------------+-------------------------+
484 | :const:`1 (VER_PLATFORM_WIN32_WINDOWS)` | Windows 95/98/ME |
485 +-----------------------------------------+-------------------------+
486 | :const:`2 (VER_PLATFORM_WIN32_NT)` | Windows NT/2000/XP/x64 |
487 +-----------------------------------------+-------------------------+
488 | :const:`3 (VER_PLATFORM_WIN32_CE)` | Windows CE |
489 +-----------------------------------------+-------------------------+
Georg Brandl116aa622007-08-15 14:28:22 +0000490
Eric Smithf7bb5782010-01-27 00:44:57 +0000491 *product_type* may be one of the following values:
492
493 +---------------------------------------+---------------------------------+
494 | Constant | Meaning |
495 +=======================================+=================================+
496 | :const:`1 (VER_NT_WORKSTATION)` | The system is a workstation. |
497 +---------------------------------------+---------------------------------+
498 | :const:`2 (VER_NT_DOMAIN_CONTROLLER)` | The system is a domain |
499 | | controller. |
500 +---------------------------------------+---------------------------------+
501 | :const:`3 (VER_NT_SERVER)` | The system is a server, but not |
502 | | a domain controller. |
503 +---------------------------------------+---------------------------------+
504
505
Georg Brandl60203b42010-10-06 10:11:56 +0000506 This function wraps the Win32 :c:func:`GetVersionEx` function; see the
507 Microsoft documentation on :c:func:`OSVERSIONINFOEX` for more information
Eric Smithf7bb5782010-01-27 00:44:57 +0000508 about these fields.
Georg Brandl116aa622007-08-15 14:28:22 +0000509
510 Availability: Windows.
511
Ezio Melotti83fc6dd2010-01-27 22:44:03 +0000512 .. versionchanged:: 3.2
Eric Smithf7bb5782010-01-27 00:44:57 +0000513 Changed to a named tuple and added *service_pack_minor*,
514 *service_pack_major*, *suite_mask*, and *product_type*.
Georg Brandl116aa622007-08-15 14:28:22 +0000515
Mark Dickinsondc787d22010-05-23 13:33:13 +0000516
517.. data:: hash_info
518
519 A structseq giving parameters of the numeric hash implementation. For
520 more details about hashing of numeric types, see :ref:`numeric-hash`.
521
522 +---------------------+--------------------------------------------------+
523 | attribute | explanation |
524 +=====================+==================================================+
525 | :const:`width` | width in bits used for hash values |
526 +---------------------+--------------------------------------------------+
527 | :const:`modulus` | prime modulus P used for numeric hash scheme |
528 +---------------------+--------------------------------------------------+
529 | :const:`inf` | hash value returned for a positive infinity |
530 +---------------------+--------------------------------------------------+
531 | :const:`nan` | hash value returned for a nan |
532 +---------------------+--------------------------------------------------+
533 | :const:`imag` | multiplier used for the imaginary part of a |
534 | | complex number |
535 +---------------------+--------------------------------------------------+
536
537 .. versionadded:: 3.2
538
539
Georg Brandl116aa622007-08-15 14:28:22 +0000540.. data:: hexversion
541
542 The version number encoded as a single integer. This is guaranteed to increase
543 with each version, including proper support for non-production releases. For
544 example, to test that the Python interpreter is at least version 1.5.2, use::
545
546 if sys.hexversion >= 0x010502F0:
547 # use some advanced feature
548 ...
549 else:
550 # use an alternative implementation or warn the user
551 ...
552
553 This is called ``hexversion`` since it only really looks meaningful when viewed
554 as the result of passing it to the built-in :func:`hex` function. The
Éric Araujo10f3d7a2011-04-27 16:22:32 +0200555 struct sequence :data:`sys.version_info` may be used for a more human-friendly
556 encoding of the same information.
Georg Brandl116aa622007-08-15 14:28:22 +0000557
R David Murray9beb34e2011-04-30 16:35:29 -0400558 The ``hexversion`` is a 32-bit number with the following layout:
R David Murray2043f9c2011-04-25 16:12:26 -0400559
560 +-------------------------+------------------------------------------------+
R David Murray9beb34e2011-04-30 16:35:29 -0400561 | Bits (big endian order) | Meaning |
R David Murray2043f9c2011-04-25 16:12:26 -0400562 +=========================+================================================+
563 | :const:`1-8` | ``PY_MAJOR_VERSION`` (the ``2`` in |
564 | | ``2.1.0a3``) |
565 +-------------------------+------------------------------------------------+
566 | :const:`9-16` | ``PY_MINOR_VERSION`` (the ``1`` in |
567 | | ``2.1.0a3``) |
568 +-------------------------+------------------------------------------------+
569 | :const:`17-24` | ``PY_MICRO_VERSION`` (the ``0`` in |
570 | | ``2.1.0a3``) |
571 +-------------------------+------------------------------------------------+
572 | :const:`25-28` | ``PY_RELEASE_LEVEL`` (``0xA`` for alpha, |
R David Murray9beb34e2011-04-30 16:35:29 -0400573 | | ``0xB`` for beta, ``0xC`` for release |
574 | | candidate and ``0xF`` for final) |
R David Murray2043f9c2011-04-25 16:12:26 -0400575 +-------------------------+------------------------------------------------+
576 | :const:`29-32` | ``PY_RELEASE_SERIAL`` (the ``3`` in |
R David Murray9beb34e2011-04-30 16:35:29 -0400577 | | ``2.1.0a3``, zero for final releases) |
R David Murray2043f9c2011-04-25 16:12:26 -0400578 +-------------------------+------------------------------------------------+
579
R David Murray9beb34e2011-04-30 16:35:29 -0400580 Thus ``2.1.0a3`` is hexversion ``0x020100a3``.
Georg Brandl116aa622007-08-15 14:28:22 +0000581
Mark Dickinsonbd792642009-03-18 20:06:12 +0000582.. data:: int_info
583
584 A struct sequence that holds information about Python's
585 internal representation of integers. The attributes are read only.
586
587 +-------------------------+----------------------------------------------+
R David Murray9beb34e2011-04-30 16:35:29 -0400588 | Attribute | Explanation |
Mark Dickinsonbd792642009-03-18 20:06:12 +0000589 +=========================+==============================================+
590 | :const:`bits_per_digit` | number of bits held in each digit. Python |
591 | | integers are stored internally in base |
592 | | ``2**int_info.bits_per_digit`` |
593 +-------------------------+----------------------------------------------+
594 | :const:`sizeof_digit` | size in bytes of the C type used to |
595 | | represent a digit |
596 +-------------------------+----------------------------------------------+
597
Mark Dickinsond72c7b62009-03-20 16:00:49 +0000598 .. versionadded:: 3.1
599
Mark Dickinsonbd792642009-03-18 20:06:12 +0000600
Georg Brandl116aa622007-08-15 14:28:22 +0000601.. function:: intern(string)
602
603 Enter *string* in the table of "interned" strings and return the interned string
604 -- which is *string* itself or a copy. Interning strings is useful to gain a
605 little performance on dictionary lookup -- if the keys in a dictionary are
606 interned, and the lookup key is interned, the key comparisons (after hashing)
607 can be done by a pointer compare instead of a string compare. Normally, the
608 names used in Python programs are automatically interned, and the dictionaries
609 used to hold module, class or instance attributes have interned keys.
610
Georg Brandl55ac8f02007-09-01 13:51:09 +0000611 Interned strings are not immortal; you must keep a reference to the return
612 value of :func:`intern` around to benefit from it.
Georg Brandl116aa622007-08-15 14:28:22 +0000613
614
615.. data:: last_type
616 last_value
617 last_traceback
618
619 These three variables are not always defined; they are set when an exception is
620 not handled and the interpreter prints an error message and a stack traceback.
621 Their intended use is to allow an interactive user to import a debugger module
622 and engage in post-mortem debugging without having to re-execute the command
623 that caused the error. (Typical use is ``import pdb; pdb.pm()`` to enter the
Alexander Belopolskyf0a0d142010-10-27 03:06:43 +0000624 post-mortem debugger; see :mod:`pdb` module for
Georg Brandl116aa622007-08-15 14:28:22 +0000625 more information.)
626
627 The meaning of the variables is the same as that of the return values from
Georg Brandl482b1512010-03-21 09:02:59 +0000628 :func:`exc_info` above.
Georg Brandl116aa622007-08-15 14:28:22 +0000629
630
Christian Heimesa37d4c62007-12-04 23:02:19 +0000631.. data:: maxsize
Georg Brandl116aa622007-08-15 14:28:22 +0000632
Georg Brandl60203b42010-10-06 10:11:56 +0000633 An integer giving the maximum value a variable of type :c:type:`Py_ssize_t` can
Georg Brandl33770552007-12-15 09:55:35 +0000634 take. It's usually ``2**31 - 1`` on a 32-bit platform and ``2**63 - 1`` on a
635 64-bit platform.
Christian Heimesa37d4c62007-12-04 23:02:19 +0000636
Georg Brandl116aa622007-08-15 14:28:22 +0000637
638.. data:: maxunicode
639
640 An integer giving the largest supported code point for a Unicode character. The
641 value of this depends on the configuration option that specifies whether Unicode
642 characters are stored as UCS-2 or UCS-4.
643
644
Brett Cannone43b0602009-03-21 03:11:16 +0000645.. data:: meta_path
646
647 A list of :term:`finder` objects that have their :meth:`find_module`
648 methods called to see if one of the objects can find the module to be
649 imported. The :meth:`find_module` method is called at least with the
650 absolute name of the module being imported. If the module to be imported is
651 contained in package then the parent package's :attr:`__path__` attribute
Georg Brandl375aec22011-01-15 17:03:02 +0000652 is passed in as a second argument. The method returns ``None`` if
Brett Cannone43b0602009-03-21 03:11:16 +0000653 the module cannot be found, else returns a :term:`loader`.
654
655 :data:`sys.meta_path` is searched before any implicit default finders or
656 :data:`sys.path`.
657
658 See :pep:`302` for the original specification.
659
660
Georg Brandl116aa622007-08-15 14:28:22 +0000661.. data:: modules
662
663 This is a dictionary that maps module names to modules which have already been
664 loaded. This can be manipulated to force reloading of modules and other tricks.
665
666
667.. data:: path
668
669 .. index:: triple: module; search; path
670
671 A list of strings that specifies the search path for modules. Initialized from
672 the environment variable :envvar:`PYTHONPATH`, plus an installation-dependent
673 default.
674
675 As initialized upon program startup, the first item of this list, ``path[0]``,
676 is the directory containing the script that was used to invoke the Python
677 interpreter. If the script directory is not available (e.g. if the interpreter
678 is invoked interactively or if the script is read from standard input),
679 ``path[0]`` is the empty string, which directs Python to search modules in the
680 current directory first. Notice that the script directory is inserted *before*
681 the entries inserted as a result of :envvar:`PYTHONPATH`.
682
683 A program is free to modify this list for its own purposes.
684
Georg Brandl116aa622007-08-15 14:28:22 +0000685
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000686 .. seealso::
687 Module :mod:`site` This describes how to use .pth files to extend
688 :data:`sys.path`.
689
690
Brett Cannone43b0602009-03-21 03:11:16 +0000691.. data:: path_hooks
692
693 A list of callables that take a path argument to try to create a
694 :term:`finder` for the path. If a finder can be created, it is to be
695 returned by the callable, else raise :exc:`ImportError`.
696
697 Originally specified in :pep:`302`.
698
699
700.. data:: path_importer_cache
701
702 A dictionary acting as a cache for :term:`finder` objects. The keys are
703 paths that have been passed to :data:`sys.path_hooks` and the values are
704 the finders that are found. If a path is a valid file system path but no
Georg Brandl375aec22011-01-15 17:03:02 +0000705 explicit finder is found on :data:`sys.path_hooks` then ``None`` is
Brett Cannone43b0602009-03-21 03:11:16 +0000706 stored to represent the implicit default finder should be used. If the path
707 is not an existing path then :class:`imp.NullImporter` is set.
708
709 Originally specified in :pep:`302`.
710
711
Georg Brandl116aa622007-08-15 14:28:22 +0000712.. data:: platform
713
Christian Heimes9bd667a2008-01-20 15:14:11 +0000714 This string contains a platform identifier that can be used to append
715 platform-specific components to :data:`sys.path`, for instance.
716
Georg Brandla47e53e2011-09-03 09:26:09 +0200717 For most Unix systems, this is the lowercased OS name as returned by ``uname
718 -s`` with the first part of the version as returned by ``uname -r`` appended,
719 e.g. ``'sunos5'``, *at the time when Python was built*. Unless you want to
720 test for a specific system version, it is therefore recommended to use the
721 following idiom::
Antoine Pitroua83cdaa2011-07-09 15:54:23 +0200722
Georg Brandla47e53e2011-09-03 09:26:09 +0200723 if sys.platform.startswith('freebsd'):
724 # FreeBSD-specific code here...
725 elif sys.platform.startswith('linux'):
Antoine Pitroua83cdaa2011-07-09 15:54:23 +0200726 # Linux-specific code here...
727
Georg Brandla47e53e2011-09-03 09:26:09 +0200728 .. versionchanged:: 3.2.2
729 Since lots of code check for ``sys.platform == 'linux2'``, and there is
730 no essential change between Linux 2.x and 3.x, ``sys.platform`` is always
731 set to ``'linux2'``, even on Linux 3.x. In Python 3.3 and later, the
732 value will always be set to ``'linux'``, so it is recommended to always
733 use the ``startswith`` idiom presented above.
734
Christian Heimes9bd667a2008-01-20 15:14:11 +0000735 For other systems, the values are:
736
Georg Brandla47e53e2011-09-03 09:26:09 +0200737 ====================== ===========================
738 System :data:`platform` value
739 ====================== ===========================
740 Linux (2.x *and* 3.x) ``'linux2'``
741 Windows ``'win32'``
742 Windows/Cygwin ``'cygwin'``
743 Mac OS X ``'darwin'``
744 OS/2 ``'os2'``
745 OS/2 EMX ``'os2emx'``
746 ====================== ===========================
Georg Brandl116aa622007-08-15 14:28:22 +0000747
Antoine Pitroua83cdaa2011-07-09 15:54:23 +0200748 .. seealso::
749 :attr:`os.name` has a coarser granularity. :func:`os.uname` gives
750 system-dependent version information.
751
752 The :mod:`platform` module provides detailed checks for the
753 system's identity.
Georg Brandl116aa622007-08-15 14:28:22 +0000754
755.. data:: prefix
756
757 A string giving the site-specific directory prefix where the platform
758 independent Python files are installed; by default, this is the string
Éric Araujo713d3032010-11-18 16:38:46 +0000759 ``'/usr/local'``. This can be set at build time with the ``--prefix``
Georg Brandl116aa622007-08-15 14:28:22 +0000760 argument to the :program:`configure` script. The main collection of Python
Éric Araujo58a91532011-10-05 01:28:24 +0200761 library modules is installed in the directory :file:`{prefix}/lib/python{X.Y}``
Georg Brandl116aa622007-08-15 14:28:22 +0000762 while the platform independent header files (all except :file:`pyconfig.h`) are
Éric Araujo58a91532011-10-05 01:28:24 +0200763 stored in :file:`{prefix}/include/python{X.Y}``, where *X.Y* is the version
764 number of Python, for example ``3.2``.
Georg Brandl116aa622007-08-15 14:28:22 +0000765
766
767.. data:: ps1
768 ps2
769
770 .. index::
771 single: interpreter prompts
772 single: prompts, interpreter
773
774 Strings specifying the primary and secondary prompt of the interpreter. These
775 are only defined if the interpreter is in interactive mode. Their initial
776 values in this case are ``'>>> '`` and ``'... '``. If a non-string object is
777 assigned to either variable, its :func:`str` is re-evaluated each time the
778 interpreter prepares to read a new interactive command; this can be used to
779 implement a dynamic prompt.
780
781
782.. function:: setcheckinterval(interval)
783
784 Set the interpreter's "check interval". This integer value determines how often
785 the interpreter checks for periodic things such as thread switches and signal
786 handlers. The default is ``100``, meaning the check is performed every 100
787 Python virtual instructions. Setting it to a larger value may increase
788 performance for programs using threads. Setting it to a value ``<=`` 0 checks
789 every virtual instruction, maximizing responsiveness as well as overhead.
790
Antoine Pitroud42bc512009-11-10 23:18:31 +0000791 .. deprecated:: 3.2
Georg Brandl67b21b72010-08-17 15:07:14 +0000792 This function doesn't have an effect anymore, as the internal logic for
793 thread switching and asynchronous tasks has been rewritten. Use
794 :func:`setswitchinterval` instead.
Antoine Pitroud42bc512009-11-10 23:18:31 +0000795
Georg Brandl116aa622007-08-15 14:28:22 +0000796
Georg Brandl116aa622007-08-15 14:28:22 +0000797.. function:: setdlopenflags(n)
798
Georg Brandl60203b42010-10-06 10:11:56 +0000799 Set the flags used by the interpreter for :c:func:`dlopen` calls, such as when
Georg Brandl116aa622007-08-15 14:28:22 +0000800 the interpreter loads extension modules. Among other things, this will enable a
801 lazy resolving of symbols when importing a module, if called as
802 ``sys.setdlopenflags(0)``. To share symbols across extension modules, call as
Neal Norwitz6cf49cf2008-03-24 06:22:57 +0000803 ``sys.setdlopenflags(ctypes.RTLD_GLOBAL)``. Symbolic names for the
804 flag modules can be either found in the :mod:`ctypes` module, or in the :mod:`DLFCN`
Georg Brandl116aa622007-08-15 14:28:22 +0000805 module. If :mod:`DLFCN` is not available, it can be generated from
806 :file:`/usr/include/dlfcn.h` using the :program:`h2py` script. Availability:
807 Unix.
808
Georg Brandl116aa622007-08-15 14:28:22 +0000809.. function:: setprofile(profilefunc)
810
811 .. index::
812 single: profile function
813 single: profiler
814
815 Set the system's profile function, which allows you to implement a Python source
816 code profiler in Python. See chapter :ref:`profile` for more information on the
817 Python profiler. The system's profile function is called similarly to the
818 system's trace function (see :func:`settrace`), but it isn't called for each
819 executed line of code (only on call and return, but the return event is reported
820 even when an exception has been set). The function is thread-specific, but
821 there is no way for the profiler to know about context switches between threads,
822 so it does not make sense to use this in the presence of multiple threads. Also,
823 its return value is not used, so it can simply return ``None``.
824
825
826.. function:: setrecursionlimit(limit)
827
828 Set the maximum depth of the Python interpreter stack to *limit*. This limit
829 prevents infinite recursion from causing an overflow of the C stack and crashing
830 Python.
831
832 The highest possible limit is platform-dependent. A user may need to set the
Georg Brandl51663752011-05-13 06:55:28 +0200833 limit higher when they have a program that requires deep recursion and a platform
Georg Brandl116aa622007-08-15 14:28:22 +0000834 that supports a higher limit. This should be done with care, because a too-high
835 limit can lead to a crash.
836
837
Antoine Pitroud42bc512009-11-10 23:18:31 +0000838.. function:: setswitchinterval(interval)
839
840 Set the interpreter's thread switch interval (in seconds). This floating-point
841 value determines the ideal duration of the "timeslices" allocated to
842 concurrently running Python threads. Please note that the actual value
843 can be higher, especially if long-running internal functions or methods
844 are used. Also, which thread becomes scheduled at the end of the interval
845 is the operating system's decision. The interpreter doesn't have its
846 own scheduler.
847
Antoine Pitrou79707ca2009-11-11 22:03:32 +0000848 .. versionadded:: 3.2
849
Antoine Pitroud42bc512009-11-10 23:18:31 +0000850
Georg Brandl116aa622007-08-15 14:28:22 +0000851.. function:: settrace(tracefunc)
852
853 .. index::
854 single: trace function
855 single: debugger
856
857 Set the system's trace function, which allows you to implement a Python
Amaury Forgeot d'Arcb0c29162008-11-22 22:18:04 +0000858 source code debugger in Python. The function is thread-specific; for a
Georg Brandl116aa622007-08-15 14:28:22 +0000859 debugger to support multiple threads, it must be registered using
860 :func:`settrace` for each thread being debugged.
861
Amaury Forgeot d'Arcb0c29162008-11-22 22:18:04 +0000862 Trace functions should have three arguments: *frame*, *event*, and
863 *arg*. *frame* is the current stack frame. *event* is a string: ``'call'``,
864 ``'line'``, ``'return'``, ``'exception'``, ``'c_call'``, ``'c_return'``, or
865 ``'c_exception'``. *arg* depends on the event type.
866
867 The trace function is invoked (with *event* set to ``'call'``) whenever a new
868 local scope is entered; it should return a reference to a local trace
869 function to be used that scope, or ``None`` if the scope shouldn't be traced.
870
871 The local trace function should return a reference to itself (or to another
872 function for further tracing in that scope), or ``None`` to turn off tracing
873 in that scope.
874
875 The events have the following meaning:
876
Georg Brandl48310cd2009-01-03 21:18:54 +0000877 ``'call'``
Amaury Forgeot d'Arcb0c29162008-11-22 22:18:04 +0000878 A function is called (or some other code block entered). The
879 global trace function is called; *arg* is ``None``; the return value
880 specifies the local trace function.
881
882 ``'line'``
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000883 The interpreter is about to execute a new line of code or re-execute the
884 condition of a loop. The local trace function is called; *arg* is
885 ``None``; the return value specifies the new local trace function. See
886 :file:`Objects/lnotab_notes.txt` for a detailed explanation of how this
887 works.
Amaury Forgeot d'Arcb0c29162008-11-22 22:18:04 +0000888
889 ``'return'``
890 A function (or other code block) is about to return. The local trace
Georg Brandld0b0e1d2010-10-15 16:42:37 +0000891 function is called; *arg* is the value that will be returned, or ``None``
892 if the event is caused by an exception being raised. The trace function's
893 return value is ignored.
Amaury Forgeot d'Arcb0c29162008-11-22 22:18:04 +0000894
895 ``'exception'``
896 An exception has occurred. The local trace function is called; *arg* is a
897 tuple ``(exception, value, traceback)``; the return value specifies the
898 new local trace function.
899
900 ``'c_call'``
901 A C function is about to be called. This may be an extension function or
Georg Brandl22b34312009-07-26 14:54:51 +0000902 a built-in. *arg* is the C function object.
Amaury Forgeot d'Arcb0c29162008-11-22 22:18:04 +0000903
904 ``'c_return'``
Georg Brandld0b0e1d2010-10-15 16:42:37 +0000905 A C function has returned. *arg* is the C function object.
Amaury Forgeot d'Arcb0c29162008-11-22 22:18:04 +0000906
907 ``'c_exception'``
Georg Brandld0b0e1d2010-10-15 16:42:37 +0000908 A C function has raised an exception. *arg* is the C function object.
Amaury Forgeot d'Arcb0c29162008-11-22 22:18:04 +0000909
910 Note that as an exception is propagated down the chain of callers, an
911 ``'exception'`` event is generated at each level.
912
913 For more information on code and frame objects, refer to :ref:`types`.
914
Georg Brandl495f7b52009-10-27 15:28:25 +0000915 .. impl-detail::
Georg Brandl116aa622007-08-15 14:28:22 +0000916
917 The :func:`settrace` function is intended only for implementing debuggers,
Georg Brandl495f7b52009-10-27 15:28:25 +0000918 profilers, coverage tools and the like. Its behavior is part of the
919 implementation platform, rather than part of the language definition, and
920 thus may not be available in all Python implementations.
Georg Brandl116aa622007-08-15 14:28:22 +0000921
922
923.. function:: settscdump(on_flag)
924
925 Activate dumping of VM measurements using the Pentium timestamp counter, if
926 *on_flag* is true. Deactivate these dumps if *on_flag* is off. The function is
Éric Araujo713d3032010-11-18 16:38:46 +0000927 available only if Python was compiled with ``--with-tsc``. To understand
Georg Brandl116aa622007-08-15 14:28:22 +0000928 the output of this dump, read :file:`Python/ceval.c` in the Python sources.
929
Benjamin Peterson21896a32010-03-21 22:03:03 +0000930 .. impl-detail::
931 This function is intimately bound to CPython implementation details and
932 thus not likely to be implemented elsewhere.
933
Georg Brandl116aa622007-08-15 14:28:22 +0000934
935.. data:: stdin
936 stdout
937 stderr
938
Antoine Pitrou7158e062011-12-15 16:25:34 +0100939 :term:`File objects <file object>` used by the interpreter for standard
940 input, output and errors:
Georg Brandl116aa622007-08-15 14:28:22 +0000941
Antoine Pitrou7158e062011-12-15 16:25:34 +0100942 * ``stdin`` is used for all interactive input (including calls to
943 :func:`input`);
944 * ``stdout`` is used for the output of :func:`print` and :term:`expression`
945 statements and for the prompts of :func:`input`;
946 * The interpreter's own prompts and its error messages go to ``stderr``.
947
948 By default, these streams are regular text streams as returned by the
949 :func:`open` function. Their parameters are chosen as follows:
950
951 * The character encoding is platform-dependent. Under Windows, if the stream
952 is interactive (that is, if its :meth:`isatty` method returns True), the
953 console codepage is used, otherwise the ANSI code page. Under other
954 platforms, the locale encoding is used (see :meth:`locale.getpreferredencoding`).
955
956 Under all platforms though, you can override this value by setting the
957 :envvar:`PYTHONIOENCODING` environment variable.
958
959 * When interactive, standard streams are line-buffered. Otherwise, they
960 are block-buffered like regular text files. You can override this
961 value with the :option:`-u` command-line option.
962
963 To write or read binary data from/to the standard streams, use the
964 underlying binary :data:`~io.TextIOBase.buffer`. For example, to write
965 bytes to :data:`stdout`, use ``sys.stdout.buffer.write(b'abc')``. Using
966 :meth:`io.TextIOBase.detach`, streams can be made binary by default. This
Benjamin Peterson995bb472009-06-14 18:41:18 +0000967 function sets :data:`stdin` and :data:`stdout` to binary::
Benjamin Peterson4199d602009-05-12 20:47:57 +0000968
969 def make_streams_binary():
970 sys.stdin = sys.stdin.detach()
Benjamin Peterson4487f532009-05-13 21:15:03 +0000971 sys.stdout = sys.stdout.detach()
Benjamin Peterson995bb472009-06-14 18:41:18 +0000972
Antoine Pitrou7158e062011-12-15 16:25:34 +0100973 Note that the streams may be replaced with objects (like :class:`io.StringIO`)
974 that do not support the :attr:`~io.BufferedIOBase.buffer` attribute or the
Benjamin Peterson995bb472009-06-14 18:41:18 +0000975 :meth:`~io.BufferedIOBase.detach` method and can raise :exc:`AttributeError`
976 or :exc:`io.UnsupportedOperation`.
Benjamin Petersoneb9fc522008-12-07 14:58:03 +0000977
Georg Brandl116aa622007-08-15 14:28:22 +0000978
979.. data:: __stdin__
980 __stdout__
981 __stderr__
982
983 These objects contain the original values of ``stdin``, ``stderr`` and
Benjamin Petersond23f8222009-04-05 19:13:16 +0000984 ``stdout`` at the start of the program. They are used during finalization,
985 and could be useful to print to the actual standard stream no matter if the
986 ``sys.std*`` object has been redirected.
Georg Brandl116aa622007-08-15 14:28:22 +0000987
Benjamin Petersond23f8222009-04-05 19:13:16 +0000988 It can also be used to restore the actual files to known working file objects
989 in case they have been overwritten with a broken object. However, the
990 preferred way to do this is to explicitly save the previous stream before
991 replacing it, and restore the saved object.
Christian Heimes58cb1b82007-11-13 02:19:40 +0000992
Benjamin Petersond23f8222009-04-05 19:13:16 +0000993 .. note::
994 Under some conditions ``stdin``, ``stdout`` and ``stderr`` as well as the
995 original values ``__stdin__``, ``__stdout__`` and ``__stderr__`` can be
996 None. It is usually the case for Windows GUI apps that aren't connected
997 to a console and Python apps started with :program:`pythonw`.
Christian Heimes58cb1b82007-11-13 02:19:40 +0000998
Georg Brandl116aa622007-08-15 14:28:22 +0000999
Antoine Pitrou462d1b32011-07-09 16:02:19 +02001000.. data:: subversion
1001
1002 A triple (repo, branch, version) representing the Subversion information of the
1003 Python interpreter. *repo* is the name of the repository, ``'CPython'``.
1004 *branch* is a string of one of the forms ``'trunk'``, ``'branches/name'`` or
1005 ``'tags/name'``. *version* is the output of ``svnversion``, if the interpreter
1006 was built from a Subversion checkout; it contains the revision number (range)
1007 and possibly a trailing 'M' if there were local modifications. If the tree was
1008 exported (or svnversion was not available), it is the revision of
1009 ``Include/patchlevel.h`` if the branch is a tag. Otherwise, it is ``None``.
1010
1011 .. deprecated:: 3.2.1
1012 Python is now `developed <http://docs.python.org/devguide/>`_ using
1013 Mercurial. In recent Python 3.2 bugfix releases, :data:`subversion`
1014 therefore contains placeholder information. It is removed in Python
1015 3.3.
1016
1017
Georg Brandl116aa622007-08-15 14:28:22 +00001018.. data:: tracebacklimit
1019
1020 When this variable is set to an integer value, it determines the maximum number
1021 of levels of traceback information printed when an unhandled exception occurs.
1022 The default is ``1000``. When set to ``0`` or less, all traceback information
1023 is suppressed and only the exception type and value are printed.
1024
1025
1026.. data:: version
1027
1028 A string containing the version number of the Python interpreter plus additional
Georg Brandle42a59d2010-07-31 20:05:31 +00001029 information on the build number and compiler used. This string is displayed
1030 when the interactive interpreter is started. Do not extract version information
1031 out of it, rather, use :data:`version_info` and the functions provided by the
1032 :mod:`platform` module.
Georg Brandl116aa622007-08-15 14:28:22 +00001033
1034
1035.. data:: api_version
1036
1037 The C API version for this interpreter. Programmers may find this useful when
1038 debugging version conflicts between Python and extension modules.
1039
Georg Brandl116aa622007-08-15 14:28:22 +00001040
1041.. data:: version_info
1042
1043 A tuple containing the five components of the version number: *major*, *minor*,
1044 *micro*, *releaselevel*, and *serial*. All values except *releaselevel* are
1045 integers; the release level is ``'alpha'``, ``'beta'``, ``'candidate'``, or
1046 ``'final'``. The ``version_info`` value corresponding to the Python version 2.0
Eric Smith0e5b5622009-02-06 01:32:42 +00001047 is ``(2, 0, 0, 'final', 0)``. The components can also be accessed by name,
1048 so ``sys.version_info[0]`` is equivalent to ``sys.version_info.major``
1049 and so on.
Georg Brandl116aa622007-08-15 14:28:22 +00001050
Raymond Hettinger35a88362009-04-09 00:08:24 +00001051 .. versionchanged:: 3.1
Georg Brandl67b21b72010-08-17 15:07:14 +00001052 Added named component attributes.
Georg Brandl116aa622007-08-15 14:28:22 +00001053
1054.. data:: warnoptions
1055
1056 This is an implementation detail of the warnings framework; do not modify this
1057 value. Refer to the :mod:`warnings` module for more information on the warnings
1058 framework.
1059
1060
1061.. data:: winver
1062
1063 The version number used to form registry keys on Windows platforms. This is
1064 stored as string resource 1000 in the Python DLL. The value is normally the
1065 first three characters of :const:`version`. It is provided in the :mod:`sys`
1066 module for informational purposes; modifying this value has no effect on the
1067 registry keys used by Python. Availability: Windows.
Mark Dickinsonbe5846b2010-07-02 20:26:07 +00001068
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001069
1070.. data:: _xoptions
1071
1072 A dictionary of the various implementation-specific flags passed through
1073 the :option:`-X` command-line option. Option names are either mapped to
1074 their values, if given explicitly, or to :const:`True`. Example::
1075
1076 $ ./python -Xa=b -Xc
1077 Python 3.2a3+ (py3k, Oct 16 2010, 20:14:50)
1078 [GCC 4.4.3] on linux2
1079 Type "help", "copyright", "credits" or "license" for more information.
1080 >>> import sys
1081 >>> sys._xoptions
1082 {'a': 'b', 'c': True}
1083
1084 .. impl-detail::
1085
1086 This is a CPython-specific way of accessing options passed through
1087 :option:`-X`. Other implementations may export them through other
1088 means, or not at all.
1089
1090 .. versionadded:: 3.2
1091
1092
Mark Dickinsonbe5846b2010-07-02 20:26:07 +00001093.. rubric:: Citations
1094
1095.. [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 .
1096