blob: c2df767998e95e290f65e8c1b5bd255e2a6ee0e9 [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
Georg Brandl60203b42010-10-06 10:11:56 +000012exception handling. It works somewhat like the Unix :c:data:`errno` variable:
Georg Brandl116aa622007-08-15 14:28:22 +000013there 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
Georg Brandl60203b42010-10-06 10:11:56 +000017integer (exception: the :c:func:`PyArg_\*` functions return ``1`` for success and
Georg Brandl116aa622007-08-15 14:28:22 +000018``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
Georg Brandl60203b42010-10-06 10:11:56 +000038.. c:function:: void PyErr_PrintEx(int set_sys_last_vars)
Georg Brandl116aa622007-08-15 14:28:22 +000039
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
Georg Brandl115fb352009-02-05 10:56:37 +000044 If *set_sys_last_vars* is nonzero, the variables :data:`sys.last_type`,
45 :data:`sys.last_value` and :data:`sys.last_traceback` will be set to the
46 type, value and traceback of the printed exception, respectively.
47
48
Georg Brandl60203b42010-10-06 10:11:56 +000049.. c:function:: void PyErr_Print()
Georg Brandl115fb352009-02-05 10:56:37 +000050
51 Alias for ``PyErr_PrintEx(1)``.
52
Georg Brandl116aa622007-08-15 14:28:22 +000053
Georg Brandl60203b42010-10-06 10:11:56 +000054.. c:function:: PyObject* PyErr_Occurred()
Georg Brandl116aa622007-08-15 14:28:22 +000055
56 Test whether the error indicator is set. If set, return the exception *type*
Georg Brandl60203b42010-10-06 10:11:56 +000057 (the first argument to the last call to one of the :c:func:`PyErr_Set\*`
58 functions or to :c:func:`PyErr_Restore`). If not set, return *NULL*. You do not
59 own a reference to the return value, so you do not need to :c:func:`Py_DECREF`
Georg Brandl116aa622007-08-15 14:28:22 +000060 it.
61
62 .. note::
63
64 Do not compare the return value to a specific exception; use
Georg Brandl60203b42010-10-06 10:11:56 +000065 :c:func:`PyErr_ExceptionMatches` instead, shown below. (The comparison could
Georg Brandl116aa622007-08-15 14:28:22 +000066 easily fail since the exception may be an instance instead of a class, in the
Benjamin Peterson82f34ad2015-01-13 09:17:24 -050067 case of a class exception, or it may be a subclass of the expected exception.)
Georg Brandl116aa622007-08-15 14:28:22 +000068
69
Georg Brandl60203b42010-10-06 10:11:56 +000070.. c:function:: int PyErr_ExceptionMatches(PyObject *exc)
Georg Brandl116aa622007-08-15 14:28:22 +000071
72 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This
73 should only be called when an exception is actually set; a memory access
74 violation will occur if no exception has been raised.
75
76
Georg Brandl60203b42010-10-06 10:11:56 +000077.. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
Georg Brandl116aa622007-08-15 14:28:22 +000078
Benjamin Petersonda10d3b2009-01-01 00:23:30 +000079 Return true if the *given* exception matches the exception in *exc*. If
80 *exc* is a class object, this also returns true when *given* is an instance
81 of a subclass. If *exc* is a tuple, all exceptions in the tuple (and
82 recursively in subtuples) are searched for a match.
Georg Brandl116aa622007-08-15 14:28:22 +000083
84
Georg Brandl60203b42010-10-06 10:11:56 +000085.. c:function:: void PyErr_NormalizeException(PyObject**exc, PyObject**val, PyObject**tb)
Georg Brandl116aa622007-08-15 14:28:22 +000086
Georg Brandl60203b42010-10-06 10:11:56 +000087 Under certain circumstances, the values returned by :c:func:`PyErr_Fetch` below
Georg Brandl116aa622007-08-15 14:28:22 +000088 can be "unnormalized", meaning that ``*exc`` is a class object but ``*val`` is
89 not an instance of the same class. This function can be used to instantiate
90 the class in that case. If the values are already normalized, nothing happens.
91 The delayed normalization is implemented to improve performance.
92
Nick Coghlan77b286b2014-01-27 00:53:38 +100093 .. note::
94
95 This function *does not* implicitly set the ``__traceback__``
96 attribute on the exception value. If setting the traceback
97 appropriately is desired, the following additional snippet is needed::
98
99 if (tb != NULL) {
100 PyException_SetTraceback(val, tb);
101 }
102
Georg Brandl116aa622007-08-15 14:28:22 +0000103
Georg Brandl60203b42010-10-06 10:11:56 +0000104.. c:function:: void PyErr_Clear()
Georg Brandl116aa622007-08-15 14:28:22 +0000105
106 Clear the error indicator. If the error indicator is not set, there is no
107 effect.
108
109
Georg Brandl60203b42010-10-06 10:11:56 +0000110.. c:function:: void PyErr_Fetch(PyObject **ptype, PyObject **pvalue, PyObject **ptraceback)
Georg Brandl116aa622007-08-15 14:28:22 +0000111
112 Retrieve the error indicator into three variables whose addresses are passed.
113 If the error indicator is not set, set all three variables to *NULL*. If it is
114 set, it will be cleared and you own a reference to each object retrieved. The
115 value and traceback object may be *NULL* even when the type object is not.
116
117 .. note::
118
119 This function is normally only used by code that needs to handle exceptions or
120 by code that needs to save and restore the error indicator temporarily.
121
122
Georg Brandl60203b42010-10-06 10:11:56 +0000123.. c:function:: void PyErr_Restore(PyObject *type, PyObject *value, PyObject *traceback)
Georg Brandl116aa622007-08-15 14:28:22 +0000124
125 Set the error indicator from the three objects. If the error indicator is
126 already set, it is cleared first. If the objects are *NULL*, the error
127 indicator is cleared. Do not pass a *NULL* type and non-*NULL* value or
128 traceback. The exception type should be a class. Do not pass an invalid
129 exception type or value. (Violating these rules will cause subtle problems
130 later.) This call takes away a reference to each object: you must own a
131 reference to each object before the call and after the call you no longer own
132 these references. (If you don't understand this, don't use this function. I
133 warned you.)
134
135 .. note::
136
137 This function is normally only used by code that needs to save and restore the
Georg Brandl60203b42010-10-06 10:11:56 +0000138 error indicator temporarily; use :c:func:`PyErr_Fetch` to save the current
Georg Brandl116aa622007-08-15 14:28:22 +0000139 exception state.
140
141
Martin v. Löwisaa2efcb2012-04-19 14:33:43 +0200142.. c:function:: void PyErr_GetExcInfo(PyObject **ptype, PyObject **pvalue, PyObject **ptraceback)
143
144 Retrieve the exception info, as known from ``sys.exc_info()``. This refers
145 to an exception that was already caught, not to an exception that was
146 freshly raised. Returns new references for the three objects, any of which
147 may be *NULL*. Does not modify the exception info state.
148
149 .. note::
150
151 This function is not normally used by code that wants to handle exceptions.
152 Rather, it can be used when code needs to save and restore the exception
153 state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the
154 exception state.
155
Georg Brandlf4095832012-04-24 19:16:24 +0200156 .. versionadded:: 3.3
Martin v. Löwisaa2efcb2012-04-19 14:33:43 +0200157
158
159.. c:function:: void PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback)
160
161 Set the exception info, as known from ``sys.exc_info()``. This refers
162 to an exception that was already caught, not to an exception that was
163 freshly raised. This function steals the references of the arguments.
164 To clear the exception state, pass *NULL* for all three arguments.
165 For general rules about the three arguments, see :c:func:`PyErr_Restore`.
166
167 .. note::
168
169 This function is not normally used by code that wants to handle exceptions.
170 Rather, it can be used when code needs to save and restore the exception
171 state temporarily. Use :c:func:`PyErr_GetExcInfo` to read the exception
172 state.
173
Georg Brandlf4095832012-04-24 19:16:24 +0200174 .. versionadded:: 3.3
Martin v. Löwisaa2efcb2012-04-19 14:33:43 +0200175
176
Georg Brandl60203b42010-10-06 10:11:56 +0000177.. c:function:: void PyErr_SetString(PyObject *type, const char *message)
Georg Brandl116aa622007-08-15 14:28:22 +0000178
179 This is the most common way to set the error indicator. The first argument
180 specifies the exception type; it is normally one of the standard exceptions,
Georg Brandl60203b42010-10-06 10:11:56 +0000181 e.g. :c:data:`PyExc_RuntimeError`. You need not increment its reference count.
Victor Stinner257d38f2010-10-09 10:12:11 +0000182 The second argument is an error message; it is decoded from ``'utf-8``'.
Georg Brandl116aa622007-08-15 14:28:22 +0000183
184
Georg Brandl60203b42010-10-06 10:11:56 +0000185.. c:function:: void PyErr_SetObject(PyObject *type, PyObject *value)
Georg Brandl116aa622007-08-15 14:28:22 +0000186
Georg Brandl60203b42010-10-06 10:11:56 +0000187 This function is similar to :c:func:`PyErr_SetString` but lets you specify an
Georg Brandl116aa622007-08-15 14:28:22 +0000188 arbitrary Python object for the "value" of the exception.
189
190
Georg Brandl60203b42010-10-06 10:11:56 +0000191.. c:function:: PyObject* PyErr_Format(PyObject *exception, const char *format, ...)
Georg Brandl116aa622007-08-15 14:28:22 +0000192
Antoine Pitroua66e0292010-11-27 20:40:43 +0000193 This function sets the error indicator and returns *NULL*. *exception*
194 should be a Python exception class. The *format* and subsequent
195 parameters help format the error message; they have the same meaning and
Victor Stinnerb1dbd102010-12-28 11:02:46 +0000196 values as in :c:func:`PyUnicode_FromFormat`. *format* is an ASCII-encoded
Victor Stinner555a24f2010-12-27 01:49:26 +0000197 string.
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000198
Georg Brandl116aa622007-08-15 14:28:22 +0000199
Georg Brandl60203b42010-10-06 10:11:56 +0000200.. c:function:: void PyErr_SetNone(PyObject *type)
Georg Brandl116aa622007-08-15 14:28:22 +0000201
202 This is a shorthand for ``PyErr_SetObject(type, Py_None)``.
203
204
Georg Brandl60203b42010-10-06 10:11:56 +0000205.. c:function:: int PyErr_BadArgument()
Georg Brandl116aa622007-08-15 14:28:22 +0000206
207 This is a shorthand for ``PyErr_SetString(PyExc_TypeError, message)``, where
208 *message* indicates that a built-in operation was invoked with an illegal
209 argument. It is mostly for internal use.
210
211
Georg Brandl60203b42010-10-06 10:11:56 +0000212.. c:function:: PyObject* PyErr_NoMemory()
Georg Brandl116aa622007-08-15 14:28:22 +0000213
214 This is a shorthand for ``PyErr_SetNone(PyExc_MemoryError)``; it returns *NULL*
215 so an object allocation function can write ``return PyErr_NoMemory();`` when it
216 runs out of memory.
217
218
Georg Brandl60203b42010-10-06 10:11:56 +0000219.. c:function:: PyObject* PyErr_SetFromErrno(PyObject *type)
Georg Brandl116aa622007-08-15 14:28:22 +0000220
221 .. index:: single: strerror()
222
223 This is a convenience function to raise an exception when a C library function
Georg Brandl60203b42010-10-06 10:11:56 +0000224 has returned an error and set the C variable :c:data:`errno`. It constructs a
225 tuple object whose first item is the integer :c:data:`errno` value and whose
226 second item is the corresponding error message (gotten from :c:func:`strerror`),
Georg Brandl116aa622007-08-15 14:28:22 +0000227 and then calls ``PyErr_SetObject(type, object)``. On Unix, when the
Georg Brandl60203b42010-10-06 10:11:56 +0000228 :c:data:`errno` value is :const:`EINTR`, indicating an interrupted system call,
229 this calls :c:func:`PyErr_CheckSignals`, and if that set the error indicator,
Georg Brandl116aa622007-08-15 14:28:22 +0000230 leaves it set to that. The function always returns *NULL*, so a wrapper
231 function around a system call can write ``return PyErr_SetFromErrno(type);``
232 when the system call returns an error.
233
234
Georg Brandl991fc572013-04-14 11:12:16 +0200235.. c:function:: PyObject* PyErr_SetFromErrnoWithFilenameObject(PyObject *type, PyObject *filenameObject)
Georg Brandl116aa622007-08-15 14:28:22 +0000236
Georg Brandl60203b42010-10-06 10:11:56 +0000237 Similar to :c:func:`PyErr_SetFromErrno`, with the additional behavior that if
Georg Brandl991fc572013-04-14 11:12:16 +0200238 *filenameObject* is not *NULL*, it is passed to the constructor of *type* as
Andrew Svetlov08af0002014-04-01 01:13:30 +0300239 a third parameter. In the case of :exc:`OSError` exception,
240 this is used to define the :attr:`filename` attribute of the
Georg Brandl991fc572013-04-14 11:12:16 +0200241 exception instance.
242
243
Larry Hastingsb0827312014-02-09 22:05:19 -0800244.. c:function:: PyObject* PyErr_SetFromErrnoWithFilenameObjects(PyObject *type, PyObject *filenameObject, PyObject *filenameObject2)
245
246 Similar to :c:func:`PyErr_SetFromErrnoWithFilenameObject`, but takes a second
247 filename object, for raising errors when a function that takes two filenames
248 fails.
249
Georg Brandldf48b972014-03-24 09:06:18 +0100250 .. versionadded:: 3.4
Larry Hastingsb0827312014-02-09 22:05:19 -0800251
252
Georg Brandl991fc572013-04-14 11:12:16 +0200253.. c:function:: PyObject* PyErr_SetFromErrnoWithFilename(PyObject *type, const char *filename)
254
255 Similar to :c:func:`PyErr_SetFromErrnoWithFilenameObject`, but the filename
256 is given as a C string. *filename* is decoded from the filesystem encoding
Victor Stinner14e461d2013-08-26 22:28:21 +0200257 (:func:`os.fsdecode`).
Georg Brandl116aa622007-08-15 14:28:22 +0000258
259
Georg Brandl60203b42010-10-06 10:11:56 +0000260.. c:function:: PyObject* PyErr_SetFromWindowsErr(int ierr)
Georg Brandl116aa622007-08-15 14:28:22 +0000261
262 This is a convenience function to raise :exc:`WindowsError`. If called with
Georg Brandl60203b42010-10-06 10:11:56 +0000263 *ierr* of :c:data:`0`, the error code returned by a call to :c:func:`GetLastError`
264 is used instead. It calls the Win32 function :c:func:`FormatMessage` to retrieve
265 the Windows description of error code given by *ierr* or :c:func:`GetLastError`,
Georg Brandl116aa622007-08-15 14:28:22 +0000266 then it constructs a tuple object whose first item is the *ierr* value and whose
267 second item is the corresponding error message (gotten from
Georg Brandl60203b42010-10-06 10:11:56 +0000268 :c:func:`FormatMessage`), and then calls ``PyErr_SetObject(PyExc_WindowsError,
Georg Brandl116aa622007-08-15 14:28:22 +0000269 object)``. This function always returns *NULL*. Availability: Windows.
270
271
Georg Brandl60203b42010-10-06 10:11:56 +0000272.. c:function:: PyObject* PyErr_SetExcFromWindowsErr(PyObject *type, int ierr)
Georg Brandl116aa622007-08-15 14:28:22 +0000273
Georg Brandl60203b42010-10-06 10:11:56 +0000274 Similar to :c:func:`PyErr_SetFromWindowsErr`, with an additional parameter
Georg Brandl116aa622007-08-15 14:28:22 +0000275 specifying the exception type to be raised. Availability: Windows.
276
Georg Brandl116aa622007-08-15 14:28:22 +0000277
Georg Brandl60203b42010-10-06 10:11:56 +0000278.. c:function:: PyObject* PyErr_SetFromWindowsErrWithFilename(int ierr, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +0000279
Georg Brandl991fc572013-04-14 11:12:16 +0200280 Similar to :c:func:`PyErr_SetFromWindowsErrWithFilenameObject`, but the
281 filename is given as a C string. *filename* is decoded from the filesystem
Victor Stinner14e461d2013-08-26 22:28:21 +0200282 encoding (:func:`os.fsdecode`). Availability: Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000283
284
Georg Brandl991fc572013-04-14 11:12:16 +0200285.. c:function:: PyObject* PyErr_SetExcFromWindowsErrWithFilenameObject(PyObject *type, int ierr, PyObject *filename)
286
287 Similar to :c:func:`PyErr_SetFromWindowsErrWithFilenameObject`, with an
288 additional parameter specifying the exception type to be raised.
289 Availability: Windows.
290
291
Larry Hastingsb0827312014-02-09 22:05:19 -0800292.. c:function:: PyObject* PyErr_SetExcFromWindowsErrWithFilenameObjects(PyObject *type, int ierr, PyObject *filename, PyObject *filename2)
293
294 Similar to :c:func:`PyErr_SetExcFromWindowsErrWithFilenameObject`,
295 but accepts a second filename object.
296 Availability: Windows.
297
Georg Brandldf48b972014-03-24 09:06:18 +0100298 .. versionadded:: 3.4
Larry Hastingsb0827312014-02-09 22:05:19 -0800299
300
Georg Brandl991fc572013-04-14 11:12:16 +0200301.. c:function:: PyObject* PyErr_SetExcFromWindowsErrWithFilename(PyObject *type, int ierr, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +0000302
Georg Brandl60203b42010-10-06 10:11:56 +0000303 Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional
Georg Brandl116aa622007-08-15 14:28:22 +0000304 parameter specifying the exception type to be raised. Availability: Windows.
305
Georg Brandlf4095832012-04-24 19:16:24 +0200306
Brian Curtin09b86d12012-04-17 16:57:09 -0500307.. c:function:: PyObject* PyErr_SetImportError(PyObject *msg, PyObject *name, PyObject *path)
Brian Curtinbd439742012-04-16 15:14:36 -0500308
309 This is a convenience function to raise :exc:`ImportError`. *msg* will be
Brian Curtin09b86d12012-04-17 16:57:09 -0500310 set as the exception's message string. *name* and *path*, both of which can
311 be ``NULL``, will be set as the :exc:`ImportError`'s respective ``name``
312 and ``path`` attributes.
Brian Curtinbd439742012-04-16 15:14:36 -0500313
Brian Curtinbded8942012-04-16 18:14:09 -0500314 .. versionadded:: 3.3
Georg Brandl116aa622007-08-15 14:28:22 +0000315
Georg Brandlf4095832012-04-24 19:16:24 +0200316
Victor Stinner14e461d2013-08-26 22:28:21 +0200317.. c:function:: void PyErr_SyntaxLocationObject(PyObject *filename, int lineno, int col_offset)
Benjamin Peterson2c539712010-09-20 22:42:10 +0000318
319 Set file, line, and offset information for the current exception. If the
320 current exception is not a :exc:`SyntaxError`, then it sets additional
321 attributes, which make the exception printing subsystem think the exception
Victor Stinner14e461d2013-08-26 22:28:21 +0200322 is a :exc:`SyntaxError`.
Benjamin Peterson2c539712010-09-20 22:42:10 +0000323
Georg Brandldf48b972014-03-24 09:06:18 +0100324 .. versionadded:: 3.4
Victor Stinner14e461d2013-08-26 22:28:21 +0200325
326
Serhiy Storchaka03863d22015-06-21 17:11:21 +0300327.. c:function:: void PyErr_SyntaxLocationEx(const char *filename, int lineno, int col_offset)
Victor Stinner14e461d2013-08-26 22:28:21 +0200328
329 Like :c:func:`PyErr_SyntaxLocationObject`, but *filename* is a byte string
330 decoded from the filesystem encoding (:func:`os.fsdecode`).
331
Georg Brandldf48b972014-03-24 09:06:18 +0100332 .. versionadded:: 3.2
Benjamin Petersonb5d23b42010-09-21 21:29:26 +0000333
Benjamin Peterson2c539712010-09-20 22:42:10 +0000334
Serhiy Storchaka03863d22015-06-21 17:11:21 +0300335.. c:function:: void PyErr_SyntaxLocation(const char *filename, int lineno)
Benjamin Peterson2c539712010-09-20 22:42:10 +0000336
Victor Stinner14e461d2013-08-26 22:28:21 +0200337 Like :c:func:`PyErr_SyntaxLocationEx`, but the col_offset parameter is
Benjamin Peterson2c539712010-09-20 22:42:10 +0000338 omitted.
339
340
Georg Brandl60203b42010-10-06 10:11:56 +0000341.. c:function:: void PyErr_BadInternalCall()
Georg Brandl116aa622007-08-15 14:28:22 +0000342
Benjamin Peterson5c6d7872009-02-06 02:40:07 +0000343 This is a shorthand for ``PyErr_SetString(PyExc_SystemError, message)``,
344 where *message* indicates that an internal operation (e.g. a Python/C API
345 function) was invoked with an illegal argument. It is mostly for internal
346 use.
Georg Brandl116aa622007-08-15 14:28:22 +0000347
348
Georg Brandl97435162014-10-06 12:58:00 +0200349.. c:function:: int PyErr_WarnEx(PyObject *category, const char *message, Py_ssize_t stack_level)
Georg Brandl116aa622007-08-15 14:28:22 +0000350
351 Issue a warning message. The *category* argument is a warning category (see
Victor Stinner555a24f2010-12-27 01:49:26 +0000352 below) or *NULL*; the *message* argument is an UTF-8 encoded string. *stack_level* is a
Georg Brandl116aa622007-08-15 14:28:22 +0000353 positive number giving a number of stack frames; the warning will be issued from
Victor Stinner4a2b7a12010-08-13 14:03:48 +0000354 the currently executing line of code in that stack frame. A *stack_level* of 1
Georg Brandl60203b42010-10-06 10:11:56 +0000355 is the function calling :c:func:`PyErr_WarnEx`, 2 is the function above that,
Georg Brandl116aa622007-08-15 14:28:22 +0000356 and so forth.
357
358 This function normally prints a warning message to *sys.stderr*; however, it is
359 also possible that the user has specified that warnings are to be turned into
360 errors, and in that case this will raise an exception. It is also possible that
361 the function raises an exception because of a problem with the warning machinery
362 (the implementation imports the :mod:`warnings` module to do the heavy lifting).
363 The return value is ``0`` if no exception is raised, or ``-1`` if an exception
364 is raised. (It is not possible to determine whether a warning message is
365 actually printed, nor what the reason is for the exception; this is
366 intentional.) If an exception is raised, the caller should do its normal
Georg Brandl60203b42010-10-06 10:11:56 +0000367 exception handling (for example, :c:func:`Py_DECREF` owned references and return
Georg Brandl116aa622007-08-15 14:28:22 +0000368 an error value).
369
Georg Brandl60203b42010-10-06 10:11:56 +0000370 Warning categories must be subclasses of :c:data:`Warning`; the default warning
371 category is :c:data:`RuntimeWarning`. The standard Python warning categories are
Georg Brandl116aa622007-08-15 14:28:22 +0000372 available as global variables whose names are ``PyExc_`` followed by the Python
Georg Brandl60203b42010-10-06 10:11:56 +0000373 exception name. These have the type :c:type:`PyObject\*`; they are all class
374 objects. Their names are :c:data:`PyExc_Warning`, :c:data:`PyExc_UserWarning`,
375 :c:data:`PyExc_UnicodeWarning`, :c:data:`PyExc_DeprecationWarning`,
376 :c:data:`PyExc_SyntaxWarning`, :c:data:`PyExc_RuntimeWarning`, and
377 :c:data:`PyExc_FutureWarning`. :c:data:`PyExc_Warning` is a subclass of
378 :c:data:`PyExc_Exception`; the other warning categories are subclasses of
379 :c:data:`PyExc_Warning`.
Georg Brandl116aa622007-08-15 14:28:22 +0000380
381 For information about warning control, see the documentation for the
382 :mod:`warnings` module and the :option:`-W` option in the command line
383 documentation. There is no C API for warning control.
384
385
Victor Stinner14e461d2013-08-26 22:28:21 +0200386.. c:function:: int PyErr_WarnExplicitObject(PyObject *category, PyObject *message, PyObject *filename, int lineno, PyObject *module, PyObject *registry)
Georg Brandl116aa622007-08-15 14:28:22 +0000387
388 Issue a warning message with explicit control over all warning attributes. This
389 is a straightforward wrapper around the Python function
390 :func:`warnings.warn_explicit`, see there for more information. The *module*
391 and *registry* arguments may be set to *NULL* to get the default effect
Victor Stinner14e461d2013-08-26 22:28:21 +0200392 described there.
393
394 .. versionadded:: 3.4
395
396
397.. c:function:: int PyErr_WarnExplicit(PyObject *category, const char *message, const char *filename, int lineno, const char *module, PyObject *registry)
398
399 Similar to :c:func:`PyErr_WarnExplicitObject` except that *message* and
400 *module* are UTF-8 encoded strings, and *filename* is decoded from the
401 filesystem encoding (:func:`os.fsdecode`).
Georg Brandl116aa622007-08-15 14:28:22 +0000402
403
Georg Brandl60203b42010-10-06 10:11:56 +0000404.. c:function:: int PyErr_WarnFormat(PyObject *category, Py_ssize_t stack_level, const char *format, ...)
Victor Stinner4a2b7a12010-08-13 14:03:48 +0000405
Georg Brandl60203b42010-10-06 10:11:56 +0000406 Function similar to :c:func:`PyErr_WarnEx`, but use
Victor Stinner555a24f2010-12-27 01:49:26 +0000407 :c:func:`PyUnicode_FromFormat` to format the warning message. *format* is
408 an ASCII-encoded string.
Victor Stinner4a2b7a12010-08-13 14:03:48 +0000409
410 .. versionadded:: 3.2
411
Georg Brandlf4095832012-04-24 19:16:24 +0200412
Georg Brandl60203b42010-10-06 10:11:56 +0000413.. c:function:: int PyErr_CheckSignals()
Georg Brandl116aa622007-08-15 14:28:22 +0000414
415 .. index::
416 module: signal
417 single: SIGINT
418 single: KeyboardInterrupt (built-in exception)
419
420 This function interacts with Python's signal handling. It checks whether a
421 signal has been sent to the processes and if so, invokes the corresponding
422 signal handler. If the :mod:`signal` module is supported, this can invoke a
423 signal handler written in Python. In all cases, the default effect for
424 :const:`SIGINT` is to raise the :exc:`KeyboardInterrupt` exception. If an
425 exception is raised the error indicator is set and the function returns ``-1``;
426 otherwise the function returns ``0``. The error indicator may or may not be
427 cleared if it was previously set.
428
429
Georg Brandl60203b42010-10-06 10:11:56 +0000430.. c:function:: void PyErr_SetInterrupt()
Georg Brandl116aa622007-08-15 14:28:22 +0000431
432 .. index::
433 single: SIGINT
434 single: KeyboardInterrupt (built-in exception)
435
436 This function simulates the effect of a :const:`SIGINT` signal arriving --- the
Georg Brandl60203b42010-10-06 10:11:56 +0000437 next time :c:func:`PyErr_CheckSignals` is called, :exc:`KeyboardInterrupt` will
Georg Brandl116aa622007-08-15 14:28:22 +0000438 be raised. It may be called without holding the interpreter lock.
439
440 .. % XXX This was described as obsolete, but is used in
Georg Brandl2067bfd2008-05-25 13:05:15 +0000441 .. % _thread.interrupt_main() (used from IDLE), so it's still needed.
Georg Brandl116aa622007-08-15 14:28:22 +0000442
443
Georg Brandl60203b42010-10-06 10:11:56 +0000444.. c:function:: int PySignal_SetWakeupFd(int fd)
Christian Heimes5fb7c2a2007-12-24 08:52:31 +0000445
446 This utility function specifies a file descriptor to which a ``'\0'`` byte will
447 be written whenever a signal is received. It returns the previous such file
448 descriptor. The value ``-1`` disables the feature; this is the initial state.
449 This is equivalent to :func:`signal.set_wakeup_fd` in Python, but without any
450 error checking. *fd* should be a valid file descriptor. The function should
451 only be called from the main thread.
452
453
Serhiy Storchaka03863d22015-06-21 17:11:21 +0300454.. c:function:: PyObject* PyErr_NewException(const char *name, PyObject *base, PyObject *dict)
Georg Brandl116aa622007-08-15 14:28:22 +0000455
Georg Brandl325eb472011-07-13 15:59:24 +0200456 This utility function creates and returns a new exception class. The *name*
Georg Brandl116aa622007-08-15 14:28:22 +0000457 argument must be the name of the new exception, a C string of the form
Georg Brandl325eb472011-07-13 15:59:24 +0200458 ``module.classname``. The *base* and *dict* arguments are normally *NULL*.
459 This creates a class object derived from :exc:`Exception` (accessible in C as
Georg Brandl60203b42010-10-06 10:11:56 +0000460 :c:data:`PyExc_Exception`).
Georg Brandl116aa622007-08-15 14:28:22 +0000461
462 The :attr:`__module__` attribute of the new class is set to the first part (up
463 to the last dot) of the *name* argument, and the class name is set to the last
464 part (after the last dot). The *base* argument can be used to specify alternate
465 base classes; it can either be only one class or a tuple of classes. The *dict*
466 argument can be used to specify a dictionary of class variables and methods.
467
468
Serhiy Storchaka03863d22015-06-21 17:11:21 +0300469.. c:function:: PyObject* PyErr_NewExceptionWithDoc(const char *name, const char *doc, PyObject *base, PyObject *dict)
Georg Brandl1e28a272009-12-28 08:41:01 +0000470
Georg Brandl60203b42010-10-06 10:11:56 +0000471 Same as :c:func:`PyErr_NewException`, except that the new exception class can
Georg Brandl1e28a272009-12-28 08:41:01 +0000472 easily be given a docstring: If *doc* is non-*NULL*, it will be used as the
473 docstring for the exception class.
474
475 .. versionadded:: 3.2
476
477
Georg Brandl60203b42010-10-06 10:11:56 +0000478.. c:function:: void PyErr_WriteUnraisable(PyObject *obj)
Georg Brandl116aa622007-08-15 14:28:22 +0000479
480 This utility function prints a warning message to ``sys.stderr`` when an
481 exception has been set but it is impossible for the interpreter to actually
482 raise the exception. It is used, for example, when an exception occurs in an
483 :meth:`__del__` method.
484
485 The function is called with a single argument *obj* that identifies the context
486 in which the unraisable exception occurred. The repr of *obj* will be printed in
487 the warning message.
488
489
Georg Brandlab6f2f62009-03-31 04:16:10 +0000490Exception Objects
491=================
492
Georg Brandl60203b42010-10-06 10:11:56 +0000493.. c:function:: PyObject* PyException_GetTraceback(PyObject *ex)
Georg Brandlab6f2f62009-03-31 04:16:10 +0000494
495 Return the traceback associated with the exception as a new reference, as
496 accessible from Python through :attr:`__traceback__`. If there is no
497 traceback associated, this returns *NULL*.
498
499
Georg Brandl60203b42010-10-06 10:11:56 +0000500.. c:function:: int PyException_SetTraceback(PyObject *ex, PyObject *tb)
Georg Brandlab6f2f62009-03-31 04:16:10 +0000501
502 Set the traceback associated with the exception to *tb*. Use ``Py_None`` to
503 clear it.
504
505
Georg Brandl60203b42010-10-06 10:11:56 +0000506.. c:function:: PyObject* PyException_GetContext(PyObject *ex)
Georg Brandlab6f2f62009-03-31 04:16:10 +0000507
508 Return the context (another exception instance during whose handling *ex* was
509 raised) associated with the exception as a new reference, as accessible from
510 Python through :attr:`__context__`. If there is no context associated, this
511 returns *NULL*.
512
513
Georg Brandl60203b42010-10-06 10:11:56 +0000514.. c:function:: void PyException_SetContext(PyObject *ex, PyObject *ctx)
Georg Brandlab6f2f62009-03-31 04:16:10 +0000515
516 Set the context associated with the exception to *ctx*. Use *NULL* to clear
517 it. There is no type check to make sure that *ctx* is an exception instance.
518 This steals a reference to *ctx*.
519
520
Georg Brandl60203b42010-10-06 10:11:56 +0000521.. c:function:: PyObject* PyException_GetCause(PyObject *ex)
Georg Brandlab6f2f62009-03-31 04:16:10 +0000522
Nick Coghlanab7bf212012-02-26 17:49:52 +1000523 Return the cause (either an exception instance, or :const:`None`,
524 set by ``raise ... from ...``) associated with the exception as a new
525 reference, as accessible from Python through :attr:`__cause__`.
526
Georg Brandlab6f2f62009-03-31 04:16:10 +0000527
Larry Hastings3732ed22014-03-15 21:13:56 -0700528.. c:function:: void PyException_SetCause(PyObject *ex, PyObject *cause)
Georg Brandlab6f2f62009-03-31 04:16:10 +0000529
Larry Hastings3732ed22014-03-15 21:13:56 -0700530 Set the cause associated with the exception to *cause*. Use *NULL* to clear
531 it. There is no type check to make sure that *cause* is either an exception
532 instance or :const:`None`. This steals a reference to *cause*.
Nick Coghlanab7bf212012-02-26 17:49:52 +1000533
Benjamin Petersond5a1c442012-05-14 22:09:31 -0700534 :attr:`__suppress_context__` is implicitly set to ``True`` by this function.
Georg Brandlab6f2f62009-03-31 04:16:10 +0000535
536
Georg Brandl5a932652010-11-23 07:54:19 +0000537.. _unicodeexceptions:
538
539Unicode Exception Objects
540=========================
541
542The following functions are used to create and modify Unicode exceptions from C.
543
544.. c:function:: PyObject* PyUnicodeDecodeError_Create(const char *encoding, const char *object, Py_ssize_t length, Py_ssize_t start, Py_ssize_t end, const char *reason)
545
546 Create a :class:`UnicodeDecodeError` object with the attributes *encoding*,
Victor Stinner555a24f2010-12-27 01:49:26 +0000547 *object*, *length*, *start*, *end* and *reason*. *encoding* and *reason* are
548 UTF-8 encoded strings.
Georg Brandl5a932652010-11-23 07:54:19 +0000549
550.. c:function:: PyObject* PyUnicodeEncodeError_Create(const char *encoding, const Py_UNICODE *object, Py_ssize_t length, Py_ssize_t start, Py_ssize_t end, const char *reason)
551
552 Create a :class:`UnicodeEncodeError` object with the attributes *encoding*,
Victor Stinner555a24f2010-12-27 01:49:26 +0000553 *object*, *length*, *start*, *end* and *reason*. *encoding* and *reason* are
554 UTF-8 encoded strings.
Georg Brandl5a932652010-11-23 07:54:19 +0000555
556.. c:function:: PyObject* PyUnicodeTranslateError_Create(const Py_UNICODE *object, Py_ssize_t length, Py_ssize_t start, Py_ssize_t end, const char *reason)
557
558 Create a :class:`UnicodeTranslateError` object with the attributes *object*,
Victor Stinner555a24f2010-12-27 01:49:26 +0000559 *length*, *start*, *end* and *reason*. *reason* is an UTF-8 encoded string.
Georg Brandl5a932652010-11-23 07:54:19 +0000560
561.. c:function:: PyObject* PyUnicodeDecodeError_GetEncoding(PyObject *exc)
562 PyObject* PyUnicodeEncodeError_GetEncoding(PyObject *exc)
563
564 Return the *encoding* attribute of the given exception object.
565
566.. c:function:: PyObject* PyUnicodeDecodeError_GetObject(PyObject *exc)
567 PyObject* PyUnicodeEncodeError_GetObject(PyObject *exc)
568 PyObject* PyUnicodeTranslateError_GetObject(PyObject *exc)
569
570 Return the *object* attribute of the given exception object.
571
572.. c:function:: int PyUnicodeDecodeError_GetStart(PyObject *exc, Py_ssize_t *start)
573 int PyUnicodeEncodeError_GetStart(PyObject *exc, Py_ssize_t *start)
574 int PyUnicodeTranslateError_GetStart(PyObject *exc, Py_ssize_t *start)
575
576 Get the *start* attribute of the given exception object and place it into
577 *\*start*. *start* must not be *NULL*. Return ``0`` on success, ``-1`` on
578 failure.
579
580.. c:function:: int PyUnicodeDecodeError_SetStart(PyObject *exc, Py_ssize_t start)
581 int PyUnicodeEncodeError_SetStart(PyObject *exc, Py_ssize_t start)
582 int PyUnicodeTranslateError_SetStart(PyObject *exc, Py_ssize_t start)
583
584 Set the *start* attribute of the given exception object to *start*. Return
585 ``0`` on success, ``-1`` on failure.
586
587.. c:function:: int PyUnicodeDecodeError_GetEnd(PyObject *exc, Py_ssize_t *end)
588 int PyUnicodeEncodeError_GetEnd(PyObject *exc, Py_ssize_t *end)
589 int PyUnicodeTranslateError_GetEnd(PyObject *exc, Py_ssize_t *end)
590
591 Get the *end* attribute of the given exception object and place it into
592 *\*end*. *end* must not be *NULL*. Return ``0`` on success, ``-1`` on
593 failure.
594
595.. c:function:: int PyUnicodeDecodeError_SetEnd(PyObject *exc, Py_ssize_t end)
596 int PyUnicodeEncodeError_SetEnd(PyObject *exc, Py_ssize_t end)
597 int PyUnicodeTranslateError_SetEnd(PyObject *exc, Py_ssize_t end)
598
599 Set the *end* attribute of the given exception object to *end*. Return ``0``
600 on success, ``-1`` on failure.
601
602.. c:function:: PyObject* PyUnicodeDecodeError_GetReason(PyObject *exc)
603 PyObject* PyUnicodeEncodeError_GetReason(PyObject *exc)
604 PyObject* PyUnicodeTranslateError_GetReason(PyObject *exc)
605
606 Return the *reason* attribute of the given exception object.
607
608.. c:function:: int PyUnicodeDecodeError_SetReason(PyObject *exc, const char *reason)
609 int PyUnicodeEncodeError_SetReason(PyObject *exc, const char *reason)
610 int PyUnicodeTranslateError_SetReason(PyObject *exc, const char *reason)
611
612 Set the *reason* attribute of the given exception object to *reason*. Return
613 ``0`` on success, ``-1`` on failure.
614
615
Georg Brandl93dc9eb2010-03-14 10:56:14 +0000616Recursion Control
617=================
618
619These two functions provide a way to perform safe recursive calls at the C
620level, both in the core and in extension modules. They are needed if the
621recursive code does not necessarily invoke Python code (which tracks its
622recursion depth automatically).
623
Serhiy Storchaka5fa22fc2015-06-21 16:26:28 +0300624.. c:function:: int Py_EnterRecursiveCall(const char *where)
Georg Brandl93dc9eb2010-03-14 10:56:14 +0000625
626 Marks a point where a recursive C-level call is about to be performed.
627
Ezio Melottif1064492011-10-19 11:06:26 +0300628 If :const:`USE_STACKCHECK` is defined, this function checks if the OS
Georg Brandl60203b42010-10-06 10:11:56 +0000629 stack overflowed using :c:func:`PyOS_CheckStack`. In this is the case, it
Georg Brandl93dc9eb2010-03-14 10:56:14 +0000630 sets a :exc:`MemoryError` and returns a nonzero value.
631
632 The function then checks if the recursion limit is reached. If this is the
633 case, a :exc:`RuntimeError` is set and a nonzero value is returned.
634 Otherwise, zero is returned.
635
636 *where* should be a string such as ``" in instance check"`` to be
637 concatenated to the :exc:`RuntimeError` message caused by the recursion depth
638 limit.
639
Georg Brandl60203b42010-10-06 10:11:56 +0000640.. c:function:: void Py_LeaveRecursiveCall()
Georg Brandl93dc9eb2010-03-14 10:56:14 +0000641
Georg Brandl60203b42010-10-06 10:11:56 +0000642 Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each
643 *successful* invocation of :c:func:`Py_EnterRecursiveCall`.
Georg Brandl93dc9eb2010-03-14 10:56:14 +0000644
Antoine Pitrou39668f52013-08-01 21:12:45 +0200645Properly implementing :c:member:`~PyTypeObject.tp_repr` for container types requires
Daniel Stutzbach7cb30512010-12-17 16:31:32 +0000646special recursion handling. In addition to protecting the stack,
Antoine Pitrou39668f52013-08-01 21:12:45 +0200647:c:member:`~PyTypeObject.tp_repr` also needs to track objects to prevent cycles. The
Daniel Stutzbach7cb30512010-12-17 16:31:32 +0000648following two functions facilitate this functionality. Effectively,
649these are the C equivalent to :func:`reprlib.recursive_repr`.
650
Daniel Stutzbachc5895dc2010-12-17 22:28:07 +0000651.. c:function:: int Py_ReprEnter(PyObject *object)
Daniel Stutzbach7cb30512010-12-17 16:31:32 +0000652
Antoine Pitrou39668f52013-08-01 21:12:45 +0200653 Called at the beginning of the :c:member:`~PyTypeObject.tp_repr` implementation to
Daniel Stutzbach7cb30512010-12-17 16:31:32 +0000654 detect cycles.
655
656 If the object has already been processed, the function returns a
Antoine Pitrou39668f52013-08-01 21:12:45 +0200657 positive integer. In that case the :c:member:`~PyTypeObject.tp_repr` implementation
Daniel Stutzbach7cb30512010-12-17 16:31:32 +0000658 should return a string object indicating a cycle. As examples,
659 :class:`dict` objects return ``{...}`` and :class:`list` objects
660 return ``[...]``.
661
662 The function will return a negative integer if the recursion limit
Antoine Pitrou39668f52013-08-01 21:12:45 +0200663 is reached. In that case the :c:member:`~PyTypeObject.tp_repr` implementation should
Daniel Stutzbach7cb30512010-12-17 16:31:32 +0000664 typically return ``NULL``.
665
Antoine Pitrou39668f52013-08-01 21:12:45 +0200666 Otherwise, the function returns zero and the :c:member:`~PyTypeObject.tp_repr`
Daniel Stutzbach7cb30512010-12-17 16:31:32 +0000667 implementation can continue normally.
668
669.. c:function:: void Py_ReprLeave(PyObject *object)
670
Daniel Stutzbachc5895dc2010-12-17 22:28:07 +0000671 Ends a :c:func:`Py_ReprEnter`. Must be called once for each
672 invocation of :c:func:`Py_ReprEnter` that returns zero.
Daniel Stutzbach7cb30512010-12-17 16:31:32 +0000673
Georg Brandl93dc9eb2010-03-14 10:56:14 +0000674
Georg Brandl116aa622007-08-15 14:28:22 +0000675.. _standardexceptions:
676
677Standard Exceptions
678===================
679
680All standard Python exceptions are available as global variables whose names are
681``PyExc_`` followed by the Python exception name. These have the type
Georg Brandl60203b42010-10-06 10:11:56 +0000682:c:type:`PyObject\*`; they are all class objects. For completeness, here are all
Georg Brandl116aa622007-08-15 14:28:22 +0000683the variables:
684
Antoine Pitrou9a4a3422011-10-12 18:28:01 +0200685+-----------------------------------------+---------------------------------+----------+
686| C Name | Python Name | Notes |
687+=========================================+=================================+==========+
688| :c:data:`PyExc_BaseException` | :exc:`BaseException` | \(1) |
689+-----------------------------------------+---------------------------------+----------+
690| :c:data:`PyExc_Exception` | :exc:`Exception` | \(1) |
691+-----------------------------------------+---------------------------------+----------+
692| :c:data:`PyExc_ArithmeticError` | :exc:`ArithmeticError` | \(1) |
693+-----------------------------------------+---------------------------------+----------+
694| :c:data:`PyExc_LookupError` | :exc:`LookupError` | \(1) |
695+-----------------------------------------+---------------------------------+----------+
696| :c:data:`PyExc_AssertionError` | :exc:`AssertionError` | |
697+-----------------------------------------+---------------------------------+----------+
698| :c:data:`PyExc_AttributeError` | :exc:`AttributeError` | |
699+-----------------------------------------+---------------------------------+----------+
700| :c:data:`PyExc_BlockingIOError` | :exc:`BlockingIOError` | |
701+-----------------------------------------+---------------------------------+----------+
702| :c:data:`PyExc_BrokenPipeError` | :exc:`BrokenPipeError` | |
703+-----------------------------------------+---------------------------------+----------+
704| :c:data:`PyExc_ChildProcessError` | :exc:`ChildProcessError` | |
705+-----------------------------------------+---------------------------------+----------+
706| :c:data:`PyExc_ConnectionError` | :exc:`ConnectionError` | |
707+-----------------------------------------+---------------------------------+----------+
708| :c:data:`PyExc_ConnectionAbortedError` | :exc:`ConnectionAbortedError` | |
709+-----------------------------------------+---------------------------------+----------+
710| :c:data:`PyExc_ConnectionRefusedError` | :exc:`ConnectionRefusedError` | |
711+-----------------------------------------+---------------------------------+----------+
712| :c:data:`PyExc_ConnectionResetError` | :exc:`ConnectionResetError` | |
713+-----------------------------------------+---------------------------------+----------+
714| :c:data:`PyExc_FileExistsError` | :exc:`FileExistsError` | |
715+-----------------------------------------+---------------------------------+----------+
716| :c:data:`PyExc_FileNotFoundError` | :exc:`FileNotFoundError` | |
717+-----------------------------------------+---------------------------------+----------+
718| :c:data:`PyExc_EOFError` | :exc:`EOFError` | |
719+-----------------------------------------+---------------------------------+----------+
720| :c:data:`PyExc_FloatingPointError` | :exc:`FloatingPointError` | |
721+-----------------------------------------+---------------------------------+----------+
722| :c:data:`PyExc_ImportError` | :exc:`ImportError` | |
723+-----------------------------------------+---------------------------------+----------+
724| :c:data:`PyExc_IndexError` | :exc:`IndexError` | |
725+-----------------------------------------+---------------------------------+----------+
726| :c:data:`PyExc_InterruptedError` | :exc:`InterruptedError` | |
727+-----------------------------------------+---------------------------------+----------+
728| :c:data:`PyExc_IsADirectoryError` | :exc:`IsADirectoryError` | |
729+-----------------------------------------+---------------------------------+----------+
730| :c:data:`PyExc_KeyError` | :exc:`KeyError` | |
731+-----------------------------------------+---------------------------------+----------+
732| :c:data:`PyExc_KeyboardInterrupt` | :exc:`KeyboardInterrupt` | |
733+-----------------------------------------+---------------------------------+----------+
734| :c:data:`PyExc_MemoryError` | :exc:`MemoryError` | |
735+-----------------------------------------+---------------------------------+----------+
736| :c:data:`PyExc_NameError` | :exc:`NameError` | |
737+-----------------------------------------+---------------------------------+----------+
738| :c:data:`PyExc_NotADirectoryError` | :exc:`NotADirectoryError` | |
739+-----------------------------------------+---------------------------------+----------+
740| :c:data:`PyExc_NotImplementedError` | :exc:`NotImplementedError` | |
741+-----------------------------------------+---------------------------------+----------+
742| :c:data:`PyExc_OSError` | :exc:`OSError` | \(1) |
743+-----------------------------------------+---------------------------------+----------+
744| :c:data:`PyExc_OverflowError` | :exc:`OverflowError` | |
745+-----------------------------------------+---------------------------------+----------+
746| :c:data:`PyExc_PermissionError` | :exc:`PermissionError` | |
747+-----------------------------------------+---------------------------------+----------+
748| :c:data:`PyExc_ProcessLookupError` | :exc:`ProcessLookupError` | |
749+-----------------------------------------+---------------------------------+----------+
750| :c:data:`PyExc_ReferenceError` | :exc:`ReferenceError` | \(2) |
751+-----------------------------------------+---------------------------------+----------+
752| :c:data:`PyExc_RuntimeError` | :exc:`RuntimeError` | |
753+-----------------------------------------+---------------------------------+----------+
754| :c:data:`PyExc_SyntaxError` | :exc:`SyntaxError` | |
755+-----------------------------------------+---------------------------------+----------+
756| :c:data:`PyExc_SystemError` | :exc:`SystemError` | |
757+-----------------------------------------+---------------------------------+----------+
758| :c:data:`PyExc_TimeoutError` | :exc:`TimeoutError` | |
759+-----------------------------------------+---------------------------------+----------+
760| :c:data:`PyExc_SystemExit` | :exc:`SystemExit` | |
761+-----------------------------------------+---------------------------------+----------+
762| :c:data:`PyExc_TypeError` | :exc:`TypeError` | |
763+-----------------------------------------+---------------------------------+----------+
764| :c:data:`PyExc_ValueError` | :exc:`ValueError` | |
765+-----------------------------------------+---------------------------------+----------+
766| :c:data:`PyExc_ZeroDivisionError` | :exc:`ZeroDivisionError` | |
767+-----------------------------------------+---------------------------------+----------+
768
769.. versionadded:: 3.3
770 :c:data:`PyExc_BlockingIOError`, :c:data:`PyExc_BrokenPipeError`,
771 :c:data:`PyExc_ChildProcessError`, :c:data:`PyExc_ConnectionError`,
772 :c:data:`PyExc_ConnectionAbortedError`, :c:data:`PyExc_ConnectionRefusedError`,
773 :c:data:`PyExc_ConnectionResetError`, :c:data:`PyExc_FileExistsError`,
774 :c:data:`PyExc_FileNotFoundError`, :c:data:`PyExc_InterruptedError`,
775 :c:data:`PyExc_IsADirectoryError`, :c:data:`PyExc_NotADirectoryError`,
776 :c:data:`PyExc_PermissionError`, :c:data:`PyExc_ProcessLookupError`
777 and :c:data:`PyExc_TimeoutError` were introduced following :pep:`3151`.
778
779
780These are compatibility aliases to :c:data:`PyExc_OSError`:
781
782+-------------------------------------+----------+
783| C Name | Notes |
784+=====================================+==========+
785| :c:data:`PyExc_EnvironmentError` | |
786+-------------------------------------+----------+
787| :c:data:`PyExc_IOError` | |
788+-------------------------------------+----------+
789| :c:data:`PyExc_WindowsError` | \(3) |
790+-------------------------------------+----------+
791
792.. versionchanged:: 3.3
793 These aliases used to be separate exception types.
794
Georg Brandl116aa622007-08-15 14:28:22 +0000795
796.. index::
797 single: PyExc_BaseException
798 single: PyExc_Exception
799 single: PyExc_ArithmeticError
800 single: PyExc_LookupError
801 single: PyExc_AssertionError
802 single: PyExc_AttributeError
Antoine Pitrou23a580f2011-10-12 18:33:15 +0200803 single: PyExc_BlockingIOError
804 single: PyExc_BrokenPipeError
805 single: PyExc_ConnectionError
806 single: PyExc_ConnectionAbortedError
807 single: PyExc_ConnectionRefusedError
808 single: PyExc_ConnectionResetError
Georg Brandl116aa622007-08-15 14:28:22 +0000809 single: PyExc_EOFError
Antoine Pitrou23a580f2011-10-12 18:33:15 +0200810 single: PyExc_FileExistsError
811 single: PyExc_FileNotFoundError
Georg Brandl116aa622007-08-15 14:28:22 +0000812 single: PyExc_FloatingPointError
Georg Brandl116aa622007-08-15 14:28:22 +0000813 single: PyExc_ImportError
814 single: PyExc_IndexError
Antoine Pitrou23a580f2011-10-12 18:33:15 +0200815 single: PyExc_InterruptedError
816 single: PyExc_IsADirectoryError
Georg Brandl116aa622007-08-15 14:28:22 +0000817 single: PyExc_KeyError
818 single: PyExc_KeyboardInterrupt
819 single: PyExc_MemoryError
820 single: PyExc_NameError
Antoine Pitrou23a580f2011-10-12 18:33:15 +0200821 single: PyExc_NotADirectoryError
Georg Brandl116aa622007-08-15 14:28:22 +0000822 single: PyExc_NotImplementedError
823 single: PyExc_OSError
824 single: PyExc_OverflowError
Antoine Pitrou23a580f2011-10-12 18:33:15 +0200825 single: PyExc_PermissionError
826 single: PyExc_ProcessLookupError
Georg Brandl116aa622007-08-15 14:28:22 +0000827 single: PyExc_ReferenceError
828 single: PyExc_RuntimeError
829 single: PyExc_SyntaxError
830 single: PyExc_SystemError
831 single: PyExc_SystemExit
Antoine Pitrou23a580f2011-10-12 18:33:15 +0200832 single: PyExc_TimeoutError
Georg Brandl116aa622007-08-15 14:28:22 +0000833 single: PyExc_TypeError
834 single: PyExc_ValueError
Georg Brandl116aa622007-08-15 14:28:22 +0000835 single: PyExc_ZeroDivisionError
Antoine Pitrou23a580f2011-10-12 18:33:15 +0200836 single: PyExc_EnvironmentError
837 single: PyExc_IOError
838 single: PyExc_WindowsError
Georg Brandl116aa622007-08-15 14:28:22 +0000839
840Notes:
841
842(1)
843 This is a base class for other standard exceptions.
844
845(2)
846 This is the same as :exc:`weakref.ReferenceError`.
847
848(3)
849 Only defined on Windows; protect code that uses this by testing that the
850 preprocessor macro ``MS_WINDOWS`` is defined.