blob: 7440dda15067ca758ef97bc0a44788fac19c407c [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. highlightlang:: c
2
3
4.. _exceptionhandling:
5
6******************
7Exception Handling
8******************
9
10The functions described in this chapter will let you handle and raise Python
11exceptions. It is important to understand some of the basics of Python
12exception handling. It works somewhat like the Unix :cdata:`errno` variable:
13there is a global indicator (per thread) of the last error that occurred. Most
14functions don't clear this on success, but will set it to indicate the cause of
15the error on failure. Most functions also return an error indicator, usually
16*NULL* if they are supposed to return a pointer, or ``-1`` if they return an
17integer (exception: the :cfunc:`PyArg_\*` functions return ``1`` for success and
18``0`` for failure).
19
20When a function must fail because some function it called failed, it generally
21doesn't set the error indicator; the function it called already set it. It is
22responsible for either handling the error and clearing the exception or
23returning after cleaning up any resources it holds (such as object references or
24memory allocations); it should *not* continue normally if it is not prepared to
25handle the error. If returning due to an error, it is important to indicate to
26the caller that an error has been set. If the error is not handled or carefully
27propagated, additional calls into the Python/C API may not behave as intended
28and may fail in mysterious ways.
29
30The error indicator consists of three Python objects corresponding to the result
31of ``sys.exc_info()``. API functions exist to interact with the error indicator
32in various ways. There is a separate error indicator for each thread.
33
Christian Heimes5b5e81c2007-12-31 16:14:33 +000034.. XXX Order of these should be more thoughtful.
35 Either alphabetical or some kind of structure.
Georg Brandl116aa622007-08-15 14:28:22 +000036
37
38.. cfunction:: void PyErr_Print()
39
40 Print a standard traceback to ``sys.stderr`` and clear the error indicator.
41 Call this function only when the error indicator is set. (Otherwise it will
42 cause a fatal error!)
43
44
45.. cfunction:: PyObject* PyErr_Occurred()
46
47 Test whether the error indicator is set. If set, return the exception *type*
48 (the first argument to the last call to one of the :cfunc:`PyErr_Set\*`
49 functions or to :cfunc:`PyErr_Restore`). If not set, return *NULL*. You do not
50 own a reference to the return value, so you do not need to :cfunc:`Py_DECREF`
51 it.
52
53 .. note::
54
55 Do not compare the return value to a specific exception; use
56 :cfunc:`PyErr_ExceptionMatches` instead, shown below. (The comparison could
57 easily fail since the exception may be an instance instead of a class, in the
58 case of a class exception, or it may the a subclass of the expected exception.)
59
60
61.. cfunction:: int PyErr_ExceptionMatches(PyObject *exc)
62
63 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This
64 should only be called when an exception is actually set; a memory access
65 violation will occur if no exception has been raised.
66
67
68.. cfunction:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
69
70 Return true if the *given* exception matches the exception in *exc*. If *exc*
71 is a class object, this also returns true when *given* is an instance of a
72 subclass. If *exc* is a tuple, all exceptions in the tuple (and recursively in
73 subtuples) are searched for a match. If *given* is *NULL*, a memory access
74 violation will occur.
75
76
77.. cfunction:: void PyErr_NormalizeException(PyObject**exc, PyObject**val, PyObject**tb)
78
79 Under certain circumstances, the values returned by :cfunc:`PyErr_Fetch` below
80 can be "unnormalized", meaning that ``*exc`` is a class object but ``*val`` is
81 not an instance of the same class. This function can be used to instantiate
82 the class in that case. If the values are already normalized, nothing happens.
83 The delayed normalization is implemented to improve performance.
84
85
86.. cfunction:: void PyErr_Clear()
87
88 Clear the error indicator. If the error indicator is not set, there is no
89 effect.
90
91
92.. cfunction:: void PyErr_Fetch(PyObject **ptype, PyObject **pvalue, PyObject **ptraceback)
93
94 Retrieve the error indicator into three variables whose addresses are passed.
95 If the error indicator is not set, set all three variables to *NULL*. If it is
96 set, it will be cleared and you own a reference to each object retrieved. The
97 value and traceback object may be *NULL* even when the type object is not.
98
99 .. note::
100
101 This function is normally only used by code that needs to handle exceptions or
102 by code that needs to save and restore the error indicator temporarily.
103
104
105.. cfunction:: void PyErr_Restore(PyObject *type, PyObject *value, PyObject *traceback)
106
107 Set the error indicator from the three objects. If the error indicator is
108 already set, it is cleared first. If the objects are *NULL*, the error
109 indicator is cleared. Do not pass a *NULL* type and non-*NULL* value or
110 traceback. The exception type should be a class. Do not pass an invalid
111 exception type or value. (Violating these rules will cause subtle problems
112 later.) This call takes away a reference to each object: you must own a
113 reference to each object before the call and after the call you no longer own
114 these references. (If you don't understand this, don't use this function. I
115 warned you.)
116
117 .. note::
118
119 This function is normally only used by code that needs to save and restore the
120 error indicator temporarily; use :cfunc:`PyErr_Fetch` to save the current
121 exception state.
122
123
124.. cfunction:: void PyErr_SetString(PyObject *type, const char *message)
125
126 This is the most common way to set the error indicator. The first argument
127 specifies the exception type; it is normally one of the standard exceptions,
128 e.g. :cdata:`PyExc_RuntimeError`. You need not increment its reference count.
129 The second argument is an error message; it is converted to a string object.
130
131
132.. cfunction:: void PyErr_SetObject(PyObject *type, PyObject *value)
133
134 This function is similar to :cfunc:`PyErr_SetString` but lets you specify an
135 arbitrary Python object for the "value" of the exception.
136
137
138.. cfunction:: PyObject* PyErr_Format(PyObject *exception, const char *format, ...)
139
140 This function sets the error indicator and returns *NULL*. *exception* should be
141 a Python exception (class, not an instance). *format* should be a string,
142 containing format codes, similar to :cfunc:`printf`. The ``width.precision``
143 before a format code is parsed, but the width part is ignored.
144
145 .. % This should be exactly the same as the table in PyString_FromFormat.
146 .. % One should just refer to the other.
147 .. % The descriptions for %zd and %zu are wrong, but the truth is complicated
148 .. % because not all compilers support the %z width modifier -- we fake it
149 .. % when necessary via interpolating PY_FORMAT_SIZE_T.
Georg Brandl116aa622007-08-15 14:28:22 +0000150
151 +-------------------+---------------+--------------------------------+
152 | Format Characters | Type | Comment |
153 +===================+===============+================================+
154 | :attr:`%%` | *n/a* | The literal % character. |
155 +-------------------+---------------+--------------------------------+
156 | :attr:`%c` | int | A single character, |
157 | | | represented as an C int. |
158 +-------------------+---------------+--------------------------------+
159 | :attr:`%d` | int | Exactly equivalent to |
160 | | | ``printf("%d")``. |
161 +-------------------+---------------+--------------------------------+
162 | :attr:`%u` | unsigned int | Exactly equivalent to |
163 | | | ``printf("%u")``. |
164 +-------------------+---------------+--------------------------------+
165 | :attr:`%ld` | long | Exactly equivalent to |
166 | | | ``printf("%ld")``. |
167 +-------------------+---------------+--------------------------------+
168 | :attr:`%lu` | unsigned long | Exactly equivalent to |
169 | | | ``printf("%lu")``. |
170 +-------------------+---------------+--------------------------------+
171 | :attr:`%zd` | Py_ssize_t | Exactly equivalent to |
172 | | | ``printf("%zd")``. |
173 +-------------------+---------------+--------------------------------+
174 | :attr:`%zu` | size_t | Exactly equivalent to |
175 | | | ``printf("%zu")``. |
176 +-------------------+---------------+--------------------------------+
177 | :attr:`%i` | int | Exactly equivalent to |
178 | | | ``printf("%i")``. |
179 +-------------------+---------------+--------------------------------+
180 | :attr:`%x` | int | Exactly equivalent to |
181 | | | ``printf("%x")``. |
182 +-------------------+---------------+--------------------------------+
183 | :attr:`%s` | char\* | A null-terminated C character |
184 | | | array. |
185 +-------------------+---------------+--------------------------------+
186 | :attr:`%p` | void\* | The hex representation of a C |
187 | | | pointer. Mostly equivalent to |
188 | | | ``printf("%p")`` except that |
189 | | | it is guaranteed to start with |
190 | | | the literal ``0x`` regardless |
191 | | | of what the platform's |
192 | | | ``printf`` yields. |
193 +-------------------+---------------+--------------------------------+
194
195 An unrecognized format character causes all the rest of the format string to be
196 copied as-is to the result string, and any extra arguments discarded.
197
198
199.. cfunction:: void PyErr_SetNone(PyObject *type)
200
201 This is a shorthand for ``PyErr_SetObject(type, Py_None)``.
202
203
204.. cfunction:: int PyErr_BadArgument()
205
206 This is a shorthand for ``PyErr_SetString(PyExc_TypeError, message)``, where
207 *message* indicates that a built-in operation was invoked with an illegal
208 argument. It is mostly for internal use.
209
210
211.. cfunction:: PyObject* PyErr_NoMemory()
212
213 This is a shorthand for ``PyErr_SetNone(PyExc_MemoryError)``; it returns *NULL*
214 so an object allocation function can write ``return PyErr_NoMemory();`` when it
215 runs out of memory.
216
217
218.. cfunction:: PyObject* PyErr_SetFromErrno(PyObject *type)
219
220 .. index:: single: strerror()
221
222 This is a convenience function to raise an exception when a C library function
223 has returned an error and set the C variable :cdata:`errno`. It constructs a
224 tuple object whose first item is the integer :cdata:`errno` value and whose
225 second item is the corresponding error message (gotten from :cfunc:`strerror`),
226 and then calls ``PyErr_SetObject(type, object)``. On Unix, when the
227 :cdata:`errno` value is :const:`EINTR`, indicating an interrupted system call,
228 this calls :cfunc:`PyErr_CheckSignals`, and if that set the error indicator,
229 leaves it set to that. The function always returns *NULL*, so a wrapper
230 function around a system call can write ``return PyErr_SetFromErrno(type);``
231 when the system call returns an error.
232
233
234.. cfunction:: PyObject* PyErr_SetFromErrnoWithFilename(PyObject *type, const char *filename)
235
236 Similar to :cfunc:`PyErr_SetFromErrno`, with the additional behavior that if
237 *filename* is not *NULL*, it is passed to the constructor of *type* as a third
238 parameter. In the case of exceptions such as :exc:`IOError` and :exc:`OSError`,
239 this is used to define the :attr:`filename` attribute of the exception instance.
240
241
242.. cfunction:: PyObject* PyErr_SetFromWindowsErr(int ierr)
243
244 This is a convenience function to raise :exc:`WindowsError`. If called with
245 *ierr* of :cdata:`0`, the error code returned by a call to :cfunc:`GetLastError`
246 is used instead. It calls the Win32 function :cfunc:`FormatMessage` to retrieve
247 the Windows description of error code given by *ierr* or :cfunc:`GetLastError`,
248 then it constructs a tuple object whose first item is the *ierr* value and whose
249 second item is the corresponding error message (gotten from
250 :cfunc:`FormatMessage`), and then calls ``PyErr_SetObject(PyExc_WindowsError,
251 object)``. This function always returns *NULL*. Availability: Windows.
252
253
254.. cfunction:: PyObject* PyErr_SetExcFromWindowsErr(PyObject *type, int ierr)
255
256 Similar to :cfunc:`PyErr_SetFromWindowsErr`, with an additional parameter
257 specifying the exception type to be raised. Availability: Windows.
258
Georg Brandl116aa622007-08-15 14:28:22 +0000259
260.. cfunction:: PyObject* PyErr_SetFromWindowsErrWithFilename(int ierr, const char *filename)
261
262 Similar to :cfunc:`PyErr_SetFromWindowsErr`, with the additional behavior that
263 if *filename* is not *NULL*, it is passed to the constructor of
264 :exc:`WindowsError` as a third parameter. Availability: Windows.
265
266
267.. cfunction:: PyObject* PyErr_SetExcFromWindowsErrWithFilename(PyObject *type, int ierr, char *filename)
268
269 Similar to :cfunc:`PyErr_SetFromWindowsErrWithFilename`, with an additional
270 parameter specifying the exception type to be raised. Availability: Windows.
271
Georg Brandl116aa622007-08-15 14:28:22 +0000272
273.. cfunction:: void PyErr_BadInternalCall()
274
275 This is a shorthand for ``PyErr_SetString(PyExc_TypeError, message)``, where
276 *message* indicates that an internal operation (e.g. a Python/C API function)
277 was invoked with an illegal argument. It is mostly for internal use.
278
279
280.. cfunction:: int PyErr_WarnEx(PyObject *category, char *message, int stacklevel)
281
282 Issue a warning message. The *category* argument is a warning category (see
283 below) or *NULL*; the *message* argument is a message string. *stacklevel* is a
284 positive number giving a number of stack frames; the warning will be issued from
285 the currently executing line of code in that stack frame. A *stacklevel* of 1
286 is the function calling :cfunc:`PyErr_WarnEx`, 2 is the function above that,
287 and so forth.
288
289 This function normally prints a warning message to *sys.stderr*; however, it is
290 also possible that the user has specified that warnings are to be turned into
291 errors, and in that case this will raise an exception. It is also possible that
292 the function raises an exception because of a problem with the warning machinery
293 (the implementation imports the :mod:`warnings` module to do the heavy lifting).
294 The return value is ``0`` if no exception is raised, or ``-1`` if an exception
295 is raised. (It is not possible to determine whether a warning message is
296 actually printed, nor what the reason is for the exception; this is
297 intentional.) If an exception is raised, the caller should do its normal
298 exception handling (for example, :cfunc:`Py_DECREF` owned references and return
299 an error value).
300
301 Warning categories must be subclasses of :cdata:`Warning`; the default warning
302 category is :cdata:`RuntimeWarning`. The standard Python warning categories are
303 available as global variables whose names are ``PyExc_`` followed by the Python
304 exception name. These have the type :ctype:`PyObject\*`; they are all class
305 objects. Their names are :cdata:`PyExc_Warning`, :cdata:`PyExc_UserWarning`,
306 :cdata:`PyExc_UnicodeWarning`, :cdata:`PyExc_DeprecationWarning`,
307 :cdata:`PyExc_SyntaxWarning`, :cdata:`PyExc_RuntimeWarning`, and
308 :cdata:`PyExc_FutureWarning`. :cdata:`PyExc_Warning` is a subclass of
309 :cdata:`PyExc_Exception`; the other warning categories are subclasses of
310 :cdata:`PyExc_Warning`.
311
312 For information about warning control, see the documentation for the
313 :mod:`warnings` module and the :option:`-W` option in the command line
314 documentation. There is no C API for warning control.
315
316
317.. cfunction:: int PyErr_WarnExplicit(PyObject *category, const char *message, const char *filename, int lineno, const char *module, PyObject *registry)
318
319 Issue a warning message with explicit control over all warning attributes. This
320 is a straightforward wrapper around the Python function
321 :func:`warnings.warn_explicit`, see there for more information. The *module*
322 and *registry* arguments may be set to *NULL* to get the default effect
323 described there.
324
325
326.. cfunction:: int PyErr_CheckSignals()
327
328 .. index::
329 module: signal
330 single: SIGINT
331 single: KeyboardInterrupt (built-in exception)
332
333 This function interacts with Python's signal handling. It checks whether a
334 signal has been sent to the processes and if so, invokes the corresponding
335 signal handler. If the :mod:`signal` module is supported, this can invoke a
336 signal handler written in Python. In all cases, the default effect for
337 :const:`SIGINT` is to raise the :exc:`KeyboardInterrupt` exception. If an
338 exception is raised the error indicator is set and the function returns ``-1``;
339 otherwise the function returns ``0``. The error indicator may or may not be
340 cleared if it was previously set.
341
342
343.. cfunction:: void PyErr_SetInterrupt()
344
345 .. index::
346 single: SIGINT
347 single: KeyboardInterrupt (built-in exception)
348
349 This function simulates the effect of a :const:`SIGINT` signal arriving --- the
350 next time :cfunc:`PyErr_CheckSignals` is called, :exc:`KeyboardInterrupt` will
351 be raised. It may be called without holding the interpreter lock.
352
353 .. % XXX This was described as obsolete, but is used in
Georg Brandl2067bfd2008-05-25 13:05:15 +0000354 .. % _thread.interrupt_main() (used from IDLE), so it's still needed.
Georg Brandl116aa622007-08-15 14:28:22 +0000355
356
Christian Heimes5fb7c2a2007-12-24 08:52:31 +0000357.. cfunction:: int PySignal_SetWakeupFd(int fd)
358
359 This utility function specifies a file descriptor to which a ``'\0'`` byte will
360 be written whenever a signal is received. It returns the previous such file
361 descriptor. The value ``-1`` disables the feature; this is the initial state.
362 This is equivalent to :func:`signal.set_wakeup_fd` in Python, but without any
363 error checking. *fd* should be a valid file descriptor. The function should
364 only be called from the main thread.
365
366
Georg Brandl116aa622007-08-15 14:28:22 +0000367.. cfunction:: PyObject* PyErr_NewException(char *name, PyObject *base, PyObject *dict)
368
369 This utility function creates and returns a new exception object. The *name*
370 argument must be the name of the new exception, a C string of the form
371 ``module.class``. The *base* and *dict* arguments are normally *NULL*. This
372 creates a class object derived from :exc:`Exception` (accessible in C as
373 :cdata:`PyExc_Exception`).
374
375 The :attr:`__module__` attribute of the new class is set to the first part (up
376 to the last dot) of the *name* argument, and the class name is set to the last
377 part (after the last dot). The *base* argument can be used to specify alternate
378 base classes; it can either be only one class or a tuple of classes. The *dict*
379 argument can be used to specify a dictionary of class variables and methods.
380
381
382.. cfunction:: void PyErr_WriteUnraisable(PyObject *obj)
383
384 This utility function prints a warning message to ``sys.stderr`` when an
385 exception has been set but it is impossible for the interpreter to actually
386 raise the exception. It is used, for example, when an exception occurs in an
387 :meth:`__del__` method.
388
389 The function is called with a single argument *obj* that identifies the context
390 in which the unraisable exception occurred. The repr of *obj* will be printed in
391 the warning message.
392
393
394.. _standardexceptions:
395
396Standard Exceptions
397===================
398
399All standard Python exceptions are available as global variables whose names are
400``PyExc_`` followed by the Python exception name. These have the type
401:ctype:`PyObject\*`; they are all class objects. For completeness, here are all
402the variables:
403
404+------------------------------------+----------------------------+----------+
405| C Name | Python Name | Notes |
406+====================================+============================+==========+
Georg Brandl321976b2007-09-01 12:33:24 +0000407| :cdata:`PyExc_BaseException` | :exc:`BaseException` | \(1) |
Georg Brandl116aa622007-08-15 14:28:22 +0000408+------------------------------------+----------------------------+----------+
409| :cdata:`PyExc_Exception` | :exc:`Exception` | \(1) |
410+------------------------------------+----------------------------+----------+
411| :cdata:`PyExc_ArithmeticError` | :exc:`ArithmeticError` | \(1) |
412+------------------------------------+----------------------------+----------+
413| :cdata:`PyExc_LookupError` | :exc:`LookupError` | \(1) |
414+------------------------------------+----------------------------+----------+
415| :cdata:`PyExc_AssertionError` | :exc:`AssertionError` | |
416+------------------------------------+----------------------------+----------+
417| :cdata:`PyExc_AttributeError` | :exc:`AttributeError` | |
418+------------------------------------+----------------------------+----------+
419| :cdata:`PyExc_EOFError` | :exc:`EOFError` | |
420+------------------------------------+----------------------------+----------+
421| :cdata:`PyExc_EnvironmentError` | :exc:`EnvironmentError` | \(1) |
422+------------------------------------+----------------------------+----------+
423| :cdata:`PyExc_FloatingPointError` | :exc:`FloatingPointError` | |
424+------------------------------------+----------------------------+----------+
425| :cdata:`PyExc_IOError` | :exc:`IOError` | |
426+------------------------------------+----------------------------+----------+
427| :cdata:`PyExc_ImportError` | :exc:`ImportError` | |
428+------------------------------------+----------------------------+----------+
429| :cdata:`PyExc_IndexError` | :exc:`IndexError` | |
430+------------------------------------+----------------------------+----------+
431| :cdata:`PyExc_KeyError` | :exc:`KeyError` | |
432+------------------------------------+----------------------------+----------+
433| :cdata:`PyExc_KeyboardInterrupt` | :exc:`KeyboardInterrupt` | |
434+------------------------------------+----------------------------+----------+
435| :cdata:`PyExc_MemoryError` | :exc:`MemoryError` | |
436+------------------------------------+----------------------------+----------+
437| :cdata:`PyExc_NameError` | :exc:`NameError` | |
438+------------------------------------+----------------------------+----------+
439| :cdata:`PyExc_NotImplementedError` | :exc:`NotImplementedError` | |
440+------------------------------------+----------------------------+----------+
441| :cdata:`PyExc_OSError` | :exc:`OSError` | |
442+------------------------------------+----------------------------+----------+
443| :cdata:`PyExc_OverflowError` | :exc:`OverflowError` | |
444+------------------------------------+----------------------------+----------+
445| :cdata:`PyExc_ReferenceError` | :exc:`ReferenceError` | \(2) |
446+------------------------------------+----------------------------+----------+
447| :cdata:`PyExc_RuntimeError` | :exc:`RuntimeError` | |
448+------------------------------------+----------------------------+----------+
449| :cdata:`PyExc_SyntaxError` | :exc:`SyntaxError` | |
450+------------------------------------+----------------------------+----------+
451| :cdata:`PyExc_SystemError` | :exc:`SystemError` | |
452+------------------------------------+----------------------------+----------+
453| :cdata:`PyExc_SystemExit` | :exc:`SystemExit` | |
454+------------------------------------+----------------------------+----------+
455| :cdata:`PyExc_TypeError` | :exc:`TypeError` | |
456+------------------------------------+----------------------------+----------+
457| :cdata:`PyExc_ValueError` | :exc:`ValueError` | |
458+------------------------------------+----------------------------+----------+
459| :cdata:`PyExc_WindowsError` | :exc:`WindowsError` | \(3) |
460+------------------------------------+----------------------------+----------+
461| :cdata:`PyExc_ZeroDivisionError` | :exc:`ZeroDivisionError` | |
462+------------------------------------+----------------------------+----------+
463
464.. index::
465 single: PyExc_BaseException
466 single: PyExc_Exception
467 single: PyExc_ArithmeticError
468 single: PyExc_LookupError
469 single: PyExc_AssertionError
470 single: PyExc_AttributeError
471 single: PyExc_EOFError
472 single: PyExc_EnvironmentError
473 single: PyExc_FloatingPointError
474 single: PyExc_IOError
475 single: PyExc_ImportError
476 single: PyExc_IndexError
477 single: PyExc_KeyError
478 single: PyExc_KeyboardInterrupt
479 single: PyExc_MemoryError
480 single: PyExc_NameError
481 single: PyExc_NotImplementedError
482 single: PyExc_OSError
483 single: PyExc_OverflowError
484 single: PyExc_ReferenceError
485 single: PyExc_RuntimeError
486 single: PyExc_SyntaxError
487 single: PyExc_SystemError
488 single: PyExc_SystemExit
489 single: PyExc_TypeError
490 single: PyExc_ValueError
491 single: PyExc_WindowsError
492 single: PyExc_ZeroDivisionError
493
494Notes:
495
496(1)
497 This is a base class for other standard exceptions.
498
499(2)
500 This is the same as :exc:`weakref.ReferenceError`.
501
502(3)
503 Only defined on Windows; protect code that uses this by testing that the
504 preprocessor macro ``MS_WINDOWS`` is defined.