blob: 01887daf475b6ce63a45bdc168cbdada95dafe3e [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{sys} ---
Fred Drakeffbe6871999-04-22 21:23:22 +00002 System-specific parameters and functions}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00003
Fred Drakeffbe6871999-04-22 21:23:22 +00004\declaremodule{builtin}{sys}
Fred Drake295da241998-08-10 19:42:37 +00005\modulesynopsis{Access system-specific parameters and functions.}
Fred Drakeb91e9341998-07-23 17:59:49 +00006
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00007This module provides access to some variables used or maintained by the
8interpreter and to functions that interact strongly with the interpreter.
9It is always available.
10
Guido van Rossum470be141995-03-17 16:07:09 +000011
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000012\begin{datadesc}{argv}
13 The list of command line arguments passed to a Python script.
Fred Drake0fd72ee1998-03-08 05:43:51 +000014 \code{argv[0]} is the script name (it is operating system
Guido van Rossum470be141995-03-17 16:07:09 +000015 dependent whether this is a full pathname or not).
Fred Drake268df271999-11-09 19:45:59 +000016 If the command was executed using the \programopt{-c} command line
17 option to the interpreter, \code{argv[0]} is set to the string
Fred Drakeb91e9341998-07-23 17:59:49 +000018 \code{'-c'}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000019 If no script name was passed to the Python interpreter,
Fred Drake0fd72ee1998-03-08 05:43:51 +000020 \code{argv} has zero length.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000021\end{datadesc}
22
23\begin{datadesc}{builtin_module_names}
Guido van Rossum0d2971b1997-01-06 23:01:02 +000024 A tuple of strings giving the names of all modules that are compiled
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000025 into this Python interpreter. (This information is not available in
Fred Drake0fd72ee1998-03-08 05:43:51 +000026 any other way --- \code{modules.keys()} only lists the imported
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000027 modules.)
28\end{datadesc}
29
Guido van Rossum3e5fe421998-06-10 17:57:44 +000030\begin{datadesc}{copyright}
31A string containing the copyright pertaining to the Python interpreter.
32\end{datadesc}
33
Fred Drake38e5d272000-04-03 20:13:55 +000034\begin{datadesc}{dllhandle}
35Integer specifying the handle of the Python DLL.
36Availability: Windows.
37\end{datadesc}
38
Guido van Rossum871cf161997-10-20 22:38:43 +000039\begin{funcdesc}{exc_info}{}
40This function returns a tuple of three values that give information
41about the exception that is currently being handled. The information
42returned is specific both to the current thread and to the current
43stack frame. If the current stack frame is not handling an exception,
44the information is taken from the calling stack frame, or its caller,
45and so on until a stack frame is found that is handling an exception.
46Here, ``handling an exception'' is defined as ``executing or having
Fred Drake0fd72ee1998-03-08 05:43:51 +000047executed an except clause.'' For any stack frame, only
Guido van Rossum871cf161997-10-20 22:38:43 +000048information about the most recently handled exception is accessible.
49
50If no exception is being handled anywhere on the stack, a tuple
51containing three \code{None} values is returned. Otherwise, the
52values returned are
53\code{(\var{type}, \var{value}, \var{traceback})}.
54Their meaning is: \var{type} gets the exception type of the exception
55being handled (a string or class object); \var{value} gets the
56exception parameter (its \dfn{associated value} or the second argument
Fred Drake0fd72ee1998-03-08 05:43:51 +000057to \keyword{raise}, which is always a class instance if the exception
Guido van Rossum871cf161997-10-20 22:38:43 +000058type is a class object); \var{traceback} gets a traceback object (see
59the Reference Manual) which encapsulates the call stack at the point
60where the exception originally occurred.
61\obindex{traceback}
62
63\strong{Warning:} assigning the \var{traceback} return value to a
64local variable in a function that is handling an exception will cause
65a circular reference. This will prevent anything referenced by a local
66variable in the same function or by the traceback from being garbage
67collected. Since most functions don't need access to the traceback,
68the best solution is to use something like
69\code{type, value = sys.exc_info()[:2]}
70to extract only the exception type and value. If you do need the
71traceback, make sure to delete it after use (best done with a
Fred Drake0fd72ee1998-03-08 05:43:51 +000072\keyword{try} ... \keyword{finally} statement) or to call
73\function{exc_info()} in a function that does not itself handle an
74exception.
Guido van Rossum871cf161997-10-20 22:38:43 +000075\end{funcdesc}
76
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000077\begin{datadesc}{exc_type}
78\dataline{exc_value}
79\dataline{exc_traceback}
Fred Drake0fd72ee1998-03-08 05:43:51 +000080\deprecated {1.5}
81 {Use \function{exc_info()} instead.}
82Since they are global variables, they are not specific to the current
Guido van Rossum871cf161997-10-20 22:38:43 +000083thread, so their use is not safe in a multi-threaded program. When no
Fred Drake0fd72ee1998-03-08 05:43:51 +000084exception is being handled, \code{exc_type} is set to \code{None} and
85the other two are undefined.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000086\end{datadesc}
87
Guido van Rossum0a3c7531997-06-02 17:32:41 +000088\begin{datadesc}{exec_prefix}
Fred Drake268df271999-11-09 19:45:59 +000089A string giving the site-specific directory prefix where the
90platform-dependent Python files are installed; by default, this is
91also \code{'/usr/local'}. This can be set at build time with the
Fred Drakeee775a12000-04-11 19:46:40 +000092\longprogramopt{exec-prefix} argument to the
Fred Drake0fd72ee1998-03-08 05:43:51 +000093\program{configure} script. Specifically, all configuration files
94(e.g. the \file{config.h} header file) are installed in the directory
Fred Drake268df271999-11-09 19:45:59 +000095\code{exec_prefix + '/lib/python\var{version}/config'}, and shared
96library modules are installed in \code{exec_prefix +
97'/lib/python\var{version}/lib-dynload'}, where \var{version} is equal
98to \code{version[:3]}.
Guido van Rossum0a3c7531997-06-02 17:32:41 +000099\end{datadesc}
100
Guido van Rossum3e5fe421998-06-10 17:57:44 +0000101\begin{datadesc}{executable}
102A string giving the name of the executable binary for the Python
103interpreter, on systems where this makes sense.
104\end{datadesc}
105
Guido van Rossum04307ce1998-11-23 17:49:53 +0000106\begin{funcdesc}{exit}{\optional{arg}}
107Exit from Python. This is implemented by raising the
108\exception{SystemExit} exception, so cleanup actions specified by
109finally clauses of \keyword{try} statements are honored, and it is
110possible to intercept the exit attempt at an outer level. The
111optional argument \var{arg} can be an integer giving the exit status
112(defaulting to zero), or another type of object. If it is an integer,
113zero is considered ``successful termination'' and any nonzero value is
114considered ``abnormal termination'' by shells and the like. Most
115systems require it to be in the range 0-127, and produce undefined
116results otherwise. Some systems have a convention for assigning
117specific meanings to specific exit codes, but these are generally
118underdeveloped; Unix programs generally use 2 for command line syntax
119errors and 1 for all other kind of errors. If another type of object
120is passed, \code{None} is equivalent to passing zero, and any other
121object is printed to \code{sys.stderr} and results in an exit code of
1221. In particular, \code{sys.exit("some error message")} is a quick
123way to exit a program when an error occurs.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000124\end{funcdesc}
125
126\begin{datadesc}{exitfunc}
127 This value is not actually defined by the module, but can be set by
128 the user (or by a program) to specify a clean-up action at program
129 exit. When set, it should be a parameterless function. This function
Guido van Rossum5fc9c861999-03-25 20:30:00 +0000130 will be called when the interpreter exits. Note: the exit function
131 is not called when the program is killed by a signal, when a Python
132 fatal internal error is detected, or when \code{os._exit()} is called.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000133\end{datadesc}
134
Guido van Rossum6e91c6a1998-02-07 21:17:05 +0000135\begin{funcdesc}{getrefcount}{object}
136Return the reference count of the \var{object}. The count returned is
137generally one higher than you might expect, because it includes the
Fred Drakeb91e9341998-07-23 17:59:49 +0000138(temporary) reference as an argument to \function{getrefcount()}.
Guido van Rossum6e91c6a1998-02-07 21:17:05 +0000139\end{funcdesc}
140
Fred Drake4d65d732000-04-13 16:54:17 +0000141\begin{datadesc}{hexversion}
142The version number encoded as a single integer. This is guaranteed to
143increase with each version, including proper support for
144non-production releases. For example, to test that the Python
145interpreter is at least version 1.5.2, use:
146
147\begin{verbatim}
148if sys.hexversion >= 0x010502F0:
149 # use some advanced feature
150 ...
151else:
152 # use an alternative implementation or warn the user
153 ...
154\end{verbatim}
155
156This is called \samp{hexversion} since it only really looks meaningful
157when viewed as the result of passing it to the built-in
158\function{hex()} function. The \code{version_info} value may be used
159for a more human-friendly encoding of the same information.
160\versionadded{1.5.2}
161\end{datadesc}
162
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000163\begin{datadesc}{last_type}
164\dataline{last_value}
165\dataline{last_traceback}
Guido van Rossum871cf161997-10-20 22:38:43 +0000166These three variables are not always defined; they are set when an
167exception is not handled and the interpreter prints an error message
168and a stack traceback. Their intended use is to allow an interactive
169user to import a debugger module and engage in post-mortem debugging
170without having to re-execute the command that caused the error.
Fred Drake0fd72ee1998-03-08 05:43:51 +0000171(Typical use is \samp{import pdb; pdb.pm()} to enter the post-mortem
Guido van Rossum871cf161997-10-20 22:38:43 +0000172debugger; see the chapter ``The Python Debugger'' for more
173information.)
Fred Drake54820dc1997-12-15 21:56:05 +0000174\refstmodindex{pdb}
Guido van Rossum871cf161997-10-20 22:38:43 +0000175
176The meaning of the variables is the same
Fred Drake0fd72ee1998-03-08 05:43:51 +0000177as that of the return values from \function{exc_info()} above.
Guido van Rossum871cf161997-10-20 22:38:43 +0000178(Since there is only one interactive thread, thread-safety is not a
Fred Drake0fd72ee1998-03-08 05:43:51 +0000179concern for these variables, unlike for \code{exc_type} etc.)
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000180\end{datadesc}
181
Guido van Rossum3e5fe421998-06-10 17:57:44 +0000182\begin{datadesc}{maxint}
183The largest positive integer supported by Python's regular integer
184type. This is at least 2**31-1. The largest negative integer is
185\code{-maxint-1} -- the asymmetry results from the use of 2's
186complement binary arithmetic.
187\end{datadesc}
188
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000189\begin{datadesc}{modules}
Fred Drake0fd72ee1998-03-08 05:43:51 +0000190 This is a dictionary that maps module names to modules which have
191 already been loaded. This can be manipulated to force reloading of
192 modules and other tricks. Note that removing a module from this
193 dictionary is \emph{not} the same as calling
194 \function{reload()}\bifuncindex{reload} on the corresponding module
195 object.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000196\end{datadesc}
197
198\begin{datadesc}{path}
Fred Drake2b67bee1998-01-13 18:35:51 +0000199\indexiii{module}{search}{path}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000200 A list of strings that specifies the search path for modules.
Fred Drakeb91e9341998-07-23 17:59:49 +0000201 Initialized from the environment variable \envvar{PYTHONPATH}, or an
Guido van Rossum0a3c7531997-06-02 17:32:41 +0000202 installation-dependent default.
203
Fred Drake0fd72ee1998-03-08 05:43:51 +0000204The first item of this list, \code{path[0]}, is the
Guido van Rossum0a3c7531997-06-02 17:32:41 +0000205directory containing the script that was used to invoke the Python
206interpreter. If the script directory is not available (e.g. if the
207interpreter is invoked interactively or if the script is read from
Fred Drake0fd72ee1998-03-08 05:43:51 +0000208standard input), \code{path[0]} is the empty string, which directs
Guido van Rossum0a3c7531997-06-02 17:32:41 +0000209Python to search modules in the current directory first. Notice that
Fred Drake54820dc1997-12-15 21:56:05 +0000210the script directory is inserted \emph{before} the entries inserted as
Fred Drakeb91e9341998-07-23 17:59:49 +0000211a result of \envvar{PYTHONPATH}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000212\end{datadesc}
213
Guido van Rossum6b686e91995-07-07 23:00:35 +0000214\begin{datadesc}{platform}
Fred Drake0fd72ee1998-03-08 05:43:51 +0000215This string contains a platform identifier, e.g. \code{'sunos5'} or
216\code{'linux1'}. This can be used to append platform-specific
217components to \code{path}, for instance.
Guido van Rossum0a3c7531997-06-02 17:32:41 +0000218\end{datadesc}
219
220\begin{datadesc}{prefix}
221A string giving the site-specific directory prefix where the platform
222independent Python files are installed; by default, this is the string
Fred Drakeb91e9341998-07-23 17:59:49 +0000223\code{'/usr/local'}. This can be set at build time with the
Fred Drakeee775a12000-04-11 19:46:40 +0000224\longprogramopt{prefix} argument to the
Fred Drake268df271999-11-09 19:45:59 +0000225\program{configure} script. The main collection of Python library
226modules is installed in the directory \code{prefix +
227'/lib/python\var{version}'} while the platform independent header
228files (all except \file{config.h}) are stored in \code{prefix +
229'/include/python\var{version}'}, where \var{version} is equal to
230\code{version[:3]}.
Guido van Rossum6b686e91995-07-07 23:00:35 +0000231\end{datadesc}
232
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000233\begin{datadesc}{ps1}
234\dataline{ps2}
Fred Drakee6cedb31998-04-03 07:05:16 +0000235\index{interpreter prompts}
236\index{prompts, interpreter}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000237 Strings specifying the primary and secondary prompt of the
238 interpreter. These are only defined if the interpreter is in
239 interactive mode. Their initial values in this case are
Guido van Rossumee9f8201997-11-25 21:12:27 +0000240 \code{'>>> '} and \code{'... '}. If a non-string object is assigned
Fred Drake0fd72ee1998-03-08 05:43:51 +0000241 to either variable, its \function{str()} is re-evaluated each time
242 the interpreter prepares to read a new interactive command; this can
243 be used to implement a dynamic prompt.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000244\end{datadesc}
245
Guido van Rossum9c51e411995-01-10 10:50:58 +0000246\begin{funcdesc}{setcheckinterval}{interval}
247Set the interpreter's ``check interval''. This integer value
248determines how often the interpreter checks for periodic things such
Fred Drake0fd72ee1998-03-08 05:43:51 +0000249as thread switches and signal handlers. The default is \code{10}, meaning
Guido van Rossum9c51e411995-01-10 10:50:58 +0000250the check is performed every 10 Python virtual instructions. Setting
251it to a larger value may increase performance for programs using
Guido van Rossumf259efe1997-11-25 01:00:40 +0000252threads. Setting it to a value \code{<=} 0 checks every virtual instruction,
Guido van Rossum9c51e411995-01-10 10:50:58 +0000253maximizing responsiveness as well as overhead.
Guido van Rossum7f49b7a1995-01-12 12:38:46 +0000254\end{funcdesc}
Guido van Rossum9c51e411995-01-10 10:50:58 +0000255
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000256\begin{funcdesc}{setprofile}{profilefunc}
257 Set the system's profile function, which allows you to implement a
Guido van Rossum470be141995-03-17 16:07:09 +0000258 Python source code profiler in Python. See the chapter on the
259 Python Profiler. The system's profile function
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000260 is called similarly to the system's trace function (see
Fred Drake0fd72ee1998-03-08 05:43:51 +0000261 \function{settrace()}), but it isn't called for each executed line of
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000262 code (only on call and return and when an exception occurs). Also,
263 its return value is not used, so it can just return \code{None}.
264\end{funcdesc}
265\index{profile function}
Guido van Rossum470be141995-03-17 16:07:09 +0000266\index{profiler}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000267
Guido van Rossum3e5fe421998-06-10 17:57:44 +0000268\begin{funcdesc}{settrace}{tracefunc}
269 Set the system's trace function, which allows you to implement a
270 Python source code debugger in Python. See section ``How It Works''
271 in the chapter on the Python Debugger.
272\end{funcdesc}
273\index{trace function}
274\index{debugger}
275
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000276\begin{datadesc}{stdin}
277\dataline{stdout}
278\dataline{stderr}
279 File objects corresponding to the interpreter's standard input,
Fred Drake0fd72ee1998-03-08 05:43:51 +0000280 output and error streams. \code{stdin} is used for all
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000281 interpreter input except for scripts but including calls to
Fred Drake0fd72ee1998-03-08 05:43:51 +0000282 \function{input()}\bifuncindex{input} and
283 \function{raw_input()}\bifuncindex{raw_input}. \code{stdout} is used
284 for the output of \keyword{print} and expression statements and for the
285 prompts of \function{input()} and \function{raw_input()}. The interpreter's
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000286 own prompts and (almost all of) its error messages go to
Fred Drake0fd72ee1998-03-08 05:43:51 +0000287 \code{stderr}. \code{stdout} and \code{stderr} needn't
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000288 be built-in file objects: any object is acceptable as long as it has
Fred Drake0fd72ee1998-03-08 05:43:51 +0000289 a \method{write()} method that takes a string argument. (Changing these
Guido van Rossum470be141995-03-17 16:07:09 +0000290 objects doesn't affect the standard I/O streams of processes
Fred Drake0fd72ee1998-03-08 05:43:51 +0000291 executed by \function{os.popen()}, \function{os.system()} or the
Fred Drakeffbe6871999-04-22 21:23:22 +0000292 \function{exec*()} family of functions in the \refmodule{os} module.)
Fred Drake54820dc1997-12-15 21:56:05 +0000293\refstmodindex{os}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000294\end{datadesc}
295
Guido van Rossum3e5fe421998-06-10 17:57:44 +0000296\begin{datadesc}{__stdin__}
297\dataline{__stdout__}
298\dataline{__stderr__}
299These objects contain the original values of \code{stdin},
300\code{stderr} and \code{stdout} at the start of the program. They are
301used during finalization, and could be useful to restore the actual
302files to known working file objects in case they have been overwritten
303with a broken object.
304\end{datadesc}
305
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000306\begin{datadesc}{tracebacklimit}
307When this variable is set to an integer value, it determines the
308maximum number of levels of traceback information printed when an
Fred Drake0fd72ee1998-03-08 05:43:51 +0000309unhandled exception occurs. The default is \code{1000}. When set to
3100 or less, all traceback information is suppressed and only the
311exception type and value are printed.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000312\end{datadesc}
Guido van Rossum0a3c7531997-06-02 17:32:41 +0000313
314\begin{datadesc}{version}
Fred Drake38e5d272000-04-03 20:13:55 +0000315A string containing the version number of the Python interpreter plus
316additional information on the build number and compiler used. It has
317a value of the form \code{'\var{version} (\#\var{build_number},
318\var{build_date}, \var{build_time}) [\var{compiler}]'}. The first
319three characters are used to identify the version in the installation
320directories (where appropriate on each platform). An example:
321
322\begin{verbatim}
323>>> import sys
324>>> sys.version
325'1.5.2 (#0 Apr 13 1999, 10:51:12) [MSC 32 bit (Intel)]'
326\end{verbatim}
327\end{datadesc}
328
Fred Drake4d65d732000-04-13 16:54:17 +0000329\begin{datadesc}{version_info}
Fred Drake9cf75872000-04-13 17:51:58 +0000330A tuple containing the five components of the version number:
331\var{major}, \var{minor}, \var{micro}, \var{releaselevel}, and
332\var{serial}. All values except \var{releaselevel} are integers; the
333release level is \code{'alpha'}, \code{'beta'},
334\code{'candidate'}, or \code{'final'}. The \code{version_info} value
335corresponding to the Python version 1.6 is
336\code{(1, 6, 0, 'final', 0)}.
Fred Drake4d65d732000-04-13 16:54:17 +0000337\versionadded{1.6}
338\end{datadesc}
339
Fred Drake38e5d272000-04-03 20:13:55 +0000340\begin{datadesc}{winver}
341The version number used to form registry keys on Windows platforms.
342This is stored as string resource 1000 in the Python DLL. The value
343is normally the first three characters of \constant{version}. It is
344provided in the \module{sys} module for informational purposes;
345modifying this value has no effect on the registry keys used by
346Python.
347Availability: Windows.
Guido van Rossum0a3c7531997-06-02 17:32:41 +0000348\end{datadesc}