Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. highlightlang:: c |
| 2 | |
| 3 | |
| 4 | .. _exceptionhandling: |
| 5 | |
| 6 | ****************** |
| 7 | Exception Handling |
| 8 | ****************** |
| 9 | |
| 10 | The functions described in this chapter will let you handle and raise Python |
| 11 | exceptions. It is important to understand some of the basics of Python |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 12 | exception handling. It works somewhat like the Unix :c:data:`errno` variable: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 13 | there is a global indicator (per thread) of the last error that occurred. Most |
| 14 | functions don't clear this on success, but will set it to indicate the cause of |
| 15 | the 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 Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 17 | integer (exception: the :c:func:`PyArg_\*` functions return ``1`` for success and |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 18 | ``0`` for failure). |
| 19 | |
| 20 | When a function must fail because some function it called failed, it generally |
| 21 | doesn't set the error indicator; the function it called already set it. It is |
| 22 | responsible for either handling the error and clearing the exception or |
| 23 | returning after cleaning up any resources it holds (such as object references or |
| 24 | memory allocations); it should *not* continue normally if it is not prepared to |
| 25 | handle the error. If returning due to an error, it is important to indicate to |
| 26 | the caller that an error has been set. If the error is not handled or carefully |
| 27 | propagated, additional calls into the Python/C API may not behave as intended |
| 28 | and may fail in mysterious ways. |
| 29 | |
| 30 | The error indicator consists of three Python objects corresponding to the result |
| 31 | of ``sys.exc_info()``. API functions exist to interact with the error indicator |
| 32 | in various ways. There is a separate error indicator for each thread. |
| 33 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 34 | .. XXX Order of these should be more thoughtful. |
| 35 | Either alphabetical or some kind of structure. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 36 | |
| 37 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 38 | .. c:function:: void PyErr_PrintEx(int set_sys_last_vars) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 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 | |
Georg Brandl | 115fb35 | 2009-02-05 10:56:37 +0000 | [diff] [blame] | 44 | 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 Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 49 | .. c:function:: void PyErr_Print() |
Georg Brandl | 115fb35 | 2009-02-05 10:56:37 +0000 | [diff] [blame] | 50 | |
| 51 | Alias for ``PyErr_PrintEx(1)``. |
| 52 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 53 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 54 | .. c:function:: PyObject* PyErr_Occurred() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 55 | |
| 56 | Test whether the error indicator is set. If set, return the exception *type* |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 57 | (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 Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 60 | it. |
| 61 | |
| 62 | .. note:: |
| 63 | |
| 64 | Do not compare the return value to a specific exception; use |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 65 | :c:func:`PyErr_ExceptionMatches` instead, shown below. (The comparison could |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 66 | easily fail since the exception may be an instance instead of a class, in the |
| 67 | case of a class exception, or it may the a subclass of the expected exception.) |
| 68 | |
| 69 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 70 | .. c:function:: int PyErr_ExceptionMatches(PyObject *exc) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 71 | |
| 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 Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 77 | .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 78 | |
Benjamin Peterson | da10d3b | 2009-01-01 00:23:30 +0000 | [diff] [blame] | 79 | 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 Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 83 | |
| 84 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 85 | .. c:function:: void PyErr_NormalizeException(PyObject**exc, PyObject**val, PyObject**tb) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 86 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 87 | Under certain circumstances, the values returned by :c:func:`PyErr_Fetch` below |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 88 | 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 | |
| 93 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 94 | .. c:function:: void PyErr_Clear() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 95 | |
| 96 | Clear the error indicator. If the error indicator is not set, there is no |
| 97 | effect. |
| 98 | |
| 99 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 100 | .. c:function:: void PyErr_Fetch(PyObject **ptype, PyObject **pvalue, PyObject **ptraceback) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 101 | |
| 102 | Retrieve the error indicator into three variables whose addresses are passed. |
| 103 | If the error indicator is not set, set all three variables to *NULL*. If it is |
| 104 | set, it will be cleared and you own a reference to each object retrieved. The |
| 105 | value and traceback object may be *NULL* even when the type object is not. |
| 106 | |
| 107 | .. note:: |
| 108 | |
| 109 | This function is normally only used by code that needs to handle exceptions or |
| 110 | by code that needs to save and restore the error indicator temporarily. |
| 111 | |
| 112 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 113 | .. c:function:: void PyErr_Restore(PyObject *type, PyObject *value, PyObject *traceback) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 114 | |
| 115 | Set the error indicator from the three objects. If the error indicator is |
| 116 | already set, it is cleared first. If the objects are *NULL*, the error |
| 117 | indicator is cleared. Do not pass a *NULL* type and non-*NULL* value or |
| 118 | traceback. The exception type should be a class. Do not pass an invalid |
| 119 | exception type or value. (Violating these rules will cause subtle problems |
| 120 | later.) This call takes away a reference to each object: you must own a |
| 121 | reference to each object before the call and after the call you no longer own |
| 122 | these references. (If you don't understand this, don't use this function. I |
| 123 | warned you.) |
| 124 | |
| 125 | .. note:: |
| 126 | |
| 127 | This function is normally only used by code that needs to save and restore the |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 128 | error indicator temporarily; use :c:func:`PyErr_Fetch` to save the current |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 129 | exception state. |
| 130 | |
| 131 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 132 | .. c:function:: void PyErr_SetString(PyObject *type, const char *message) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 133 | |
| 134 | This is the most common way to set the error indicator. The first argument |
| 135 | specifies the exception type; it is normally one of the standard exceptions, |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 136 | e.g. :c:data:`PyExc_RuntimeError`. You need not increment its reference count. |
Victor Stinner | 257d38f | 2010-10-09 10:12:11 +0000 | [diff] [blame] | 137 | The second argument is an error message; it is decoded from ``'utf-8``'. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 138 | |
| 139 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 140 | .. c:function:: void PyErr_SetObject(PyObject *type, PyObject *value) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 141 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 142 | This function is similar to :c:func:`PyErr_SetString` but lets you specify an |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 143 | arbitrary Python object for the "value" of the exception. |
| 144 | |
| 145 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 146 | .. c:function:: PyObject* PyErr_Format(PyObject *exception, const char *format, ...) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 147 | |
Antoine Pitrou | a66e029 | 2010-11-27 20:40:43 +0000 | [diff] [blame] | 148 | This function sets the error indicator and returns *NULL*. *exception* |
| 149 | should be a Python exception class. The *format* and subsequent |
| 150 | parameters help format the error message; they have the same meaning and |
| 151 | values as in :c:func:`PyUnicode_FromFormat`. |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 152 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 153 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 154 | .. c:function:: void PyErr_SetNone(PyObject *type) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 155 | |
| 156 | This is a shorthand for ``PyErr_SetObject(type, Py_None)``. |
| 157 | |
| 158 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 159 | .. c:function:: int PyErr_BadArgument() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 160 | |
| 161 | This is a shorthand for ``PyErr_SetString(PyExc_TypeError, message)``, where |
| 162 | *message* indicates that a built-in operation was invoked with an illegal |
| 163 | argument. It is mostly for internal use. |
| 164 | |
| 165 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 166 | .. c:function:: PyObject* PyErr_NoMemory() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 167 | |
| 168 | This is a shorthand for ``PyErr_SetNone(PyExc_MemoryError)``; it returns *NULL* |
| 169 | so an object allocation function can write ``return PyErr_NoMemory();`` when it |
| 170 | runs out of memory. |
| 171 | |
| 172 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 173 | .. c:function:: PyObject* PyErr_SetFromErrno(PyObject *type) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 174 | |
| 175 | .. index:: single: strerror() |
| 176 | |
| 177 | This is a convenience function to raise an exception when a C library function |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 178 | has returned an error and set the C variable :c:data:`errno`. It constructs a |
| 179 | tuple object whose first item is the integer :c:data:`errno` value and whose |
| 180 | second item is the corresponding error message (gotten from :c:func:`strerror`), |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 181 | and then calls ``PyErr_SetObject(type, object)``. On Unix, when the |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 182 | :c:data:`errno` value is :const:`EINTR`, indicating an interrupted system call, |
| 183 | this calls :c:func:`PyErr_CheckSignals`, and if that set the error indicator, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 184 | leaves it set to that. The function always returns *NULL*, so a wrapper |
| 185 | function around a system call can write ``return PyErr_SetFromErrno(type);`` |
| 186 | when the system call returns an error. |
| 187 | |
| 188 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 189 | .. c:function:: PyObject* PyErr_SetFromErrnoWithFilename(PyObject *type, const char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 190 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 191 | Similar to :c:func:`PyErr_SetFromErrno`, with the additional behavior that if |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 192 | *filename* is not *NULL*, it is passed to the constructor of *type* as a third |
| 193 | parameter. In the case of exceptions such as :exc:`IOError` and :exc:`OSError`, |
| 194 | this is used to define the :attr:`filename` attribute of the exception instance. |
Victor Stinner | 257d38f | 2010-10-09 10:12:11 +0000 | [diff] [blame] | 195 | *filename* is decoded from the filesystem encoding |
| 196 | (:func:`sys.getfilesystemencoding`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 197 | |
| 198 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 199 | .. c:function:: PyObject* PyErr_SetFromWindowsErr(int ierr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 200 | |
| 201 | This is a convenience function to raise :exc:`WindowsError`. If called with |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 202 | *ierr* of :c:data:`0`, the error code returned by a call to :c:func:`GetLastError` |
| 203 | is used instead. It calls the Win32 function :c:func:`FormatMessage` to retrieve |
| 204 | the Windows description of error code given by *ierr* or :c:func:`GetLastError`, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 205 | then it constructs a tuple object whose first item is the *ierr* value and whose |
| 206 | second item is the corresponding error message (gotten from |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 207 | :c:func:`FormatMessage`), and then calls ``PyErr_SetObject(PyExc_WindowsError, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 208 | object)``. This function always returns *NULL*. Availability: Windows. |
| 209 | |
| 210 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 211 | .. c:function:: PyObject* PyErr_SetExcFromWindowsErr(PyObject *type, int ierr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 212 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 213 | Similar to :c:func:`PyErr_SetFromWindowsErr`, with an additional parameter |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 214 | specifying the exception type to be raised. Availability: Windows. |
| 215 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 216 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 217 | .. c:function:: PyObject* PyErr_SetFromWindowsErrWithFilename(int ierr, const char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 218 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 219 | Similar to :c:func:`PyErr_SetFromWindowsErr`, with the additional behavior that |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 220 | if *filename* is not *NULL*, it is passed to the constructor of |
| 221 | :exc:`WindowsError` as a third parameter. Availability: Windows. |
| 222 | |
| 223 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 224 | .. c:function:: PyObject* PyErr_SetExcFromWindowsErrWithFilename(PyObject *type, int ierr, char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 225 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 226 | Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 227 | parameter specifying the exception type to be raised. Availability: Windows. |
| 228 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 229 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 230 | .. c:function:: void PyErr_SyntaxLocationEx(char *filename, int lineno, int col_offset) |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 231 | |
| 232 | Set file, line, and offset information for the current exception. If the |
| 233 | current exception is not a :exc:`SyntaxError`, then it sets additional |
| 234 | attributes, which make the exception printing subsystem think the exception |
| 235 | is a :exc:`SyntaxError`. |
| 236 | |
Benjamin Peterson | b5d23b4 | 2010-09-21 21:29:26 +0000 | [diff] [blame] | 237 | .. versionadded:: 3.2 |
| 238 | |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 239 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 240 | .. c:function:: void PyErr_SyntaxLocation(char *filename, int lineno) |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 241 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 242 | Like :c:func:`PyErr_SyntaxLocationExc`, but the col_offset parameter is |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 243 | omitted. |
| 244 | |
| 245 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 246 | .. c:function:: void PyErr_BadInternalCall() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 247 | |
Benjamin Peterson | 5c6d787 | 2009-02-06 02:40:07 +0000 | [diff] [blame] | 248 | This is a shorthand for ``PyErr_SetString(PyExc_SystemError, message)``, |
| 249 | where *message* indicates that an internal operation (e.g. a Python/C API |
| 250 | function) was invoked with an illegal argument. It is mostly for internal |
| 251 | use. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 252 | |
| 253 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 254 | .. c:function:: int PyErr_WarnEx(PyObject *category, char *message, int stack_level) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 255 | |
| 256 | Issue a warning message. The *category* argument is a warning category (see |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 257 | below) or *NULL*; the *message* argument is a message string. *stack_level* is a |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 258 | positive number giving a number of stack frames; the warning will be issued from |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 259 | the currently executing line of code in that stack frame. A *stack_level* of 1 |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 260 | is the function calling :c:func:`PyErr_WarnEx`, 2 is the function above that, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 261 | and so forth. |
| 262 | |
| 263 | This function normally prints a warning message to *sys.stderr*; however, it is |
| 264 | also possible that the user has specified that warnings are to be turned into |
| 265 | errors, and in that case this will raise an exception. It is also possible that |
| 266 | the function raises an exception because of a problem with the warning machinery |
| 267 | (the implementation imports the :mod:`warnings` module to do the heavy lifting). |
| 268 | The return value is ``0`` if no exception is raised, or ``-1`` if an exception |
| 269 | is raised. (It is not possible to determine whether a warning message is |
| 270 | actually printed, nor what the reason is for the exception; this is |
| 271 | intentional.) If an exception is raised, the caller should do its normal |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 272 | exception handling (for example, :c:func:`Py_DECREF` owned references and return |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 273 | an error value). |
| 274 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 275 | Warning categories must be subclasses of :c:data:`Warning`; the default warning |
| 276 | category is :c:data:`RuntimeWarning`. The standard Python warning categories are |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 277 | available as global variables whose names are ``PyExc_`` followed by the Python |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 278 | exception name. These have the type :c:type:`PyObject\*`; they are all class |
| 279 | objects. Their names are :c:data:`PyExc_Warning`, :c:data:`PyExc_UserWarning`, |
| 280 | :c:data:`PyExc_UnicodeWarning`, :c:data:`PyExc_DeprecationWarning`, |
| 281 | :c:data:`PyExc_SyntaxWarning`, :c:data:`PyExc_RuntimeWarning`, and |
| 282 | :c:data:`PyExc_FutureWarning`. :c:data:`PyExc_Warning` is a subclass of |
| 283 | :c:data:`PyExc_Exception`; the other warning categories are subclasses of |
| 284 | :c:data:`PyExc_Warning`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 285 | |
| 286 | For information about warning control, see the documentation for the |
| 287 | :mod:`warnings` module and the :option:`-W` option in the command line |
| 288 | documentation. There is no C API for warning control. |
| 289 | |
| 290 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 291 | .. c:function:: int PyErr_WarnExplicit(PyObject *category, const char *message, const char *filename, int lineno, const char *module, PyObject *registry) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 292 | |
| 293 | Issue a warning message with explicit control over all warning attributes. This |
| 294 | is a straightforward wrapper around the Python function |
| 295 | :func:`warnings.warn_explicit`, see there for more information. The *module* |
| 296 | and *registry* arguments may be set to *NULL* to get the default effect |
| 297 | described there. |
| 298 | |
| 299 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 300 | .. c:function:: int PyErr_WarnFormat(PyObject *category, Py_ssize_t stack_level, const char *format, ...) |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 301 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 302 | Function similar to :c:func:`PyErr_WarnEx`, but use |
Antoine Pitrou | a66e029 | 2010-11-27 20:40:43 +0000 | [diff] [blame] | 303 | :c:func:`PyUnicode_FromFormat` to format the warning message. |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 304 | |
| 305 | .. versionadded:: 3.2 |
| 306 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 307 | .. c:function:: int PyErr_CheckSignals() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 308 | |
| 309 | .. index:: |
| 310 | module: signal |
| 311 | single: SIGINT |
| 312 | single: KeyboardInterrupt (built-in exception) |
| 313 | |
| 314 | This function interacts with Python's signal handling. It checks whether a |
| 315 | signal has been sent to the processes and if so, invokes the corresponding |
| 316 | signal handler. If the :mod:`signal` module is supported, this can invoke a |
| 317 | signal handler written in Python. In all cases, the default effect for |
| 318 | :const:`SIGINT` is to raise the :exc:`KeyboardInterrupt` exception. If an |
| 319 | exception is raised the error indicator is set and the function returns ``-1``; |
| 320 | otherwise the function returns ``0``. The error indicator may or may not be |
| 321 | cleared if it was previously set. |
| 322 | |
| 323 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 324 | .. c:function:: void PyErr_SetInterrupt() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 325 | |
| 326 | .. index:: |
| 327 | single: SIGINT |
| 328 | single: KeyboardInterrupt (built-in exception) |
| 329 | |
| 330 | This function simulates the effect of a :const:`SIGINT` signal arriving --- the |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 331 | next time :c:func:`PyErr_CheckSignals` is called, :exc:`KeyboardInterrupt` will |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 332 | be raised. It may be called without holding the interpreter lock. |
| 333 | |
| 334 | .. % XXX This was described as obsolete, but is used in |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 335 | .. % _thread.interrupt_main() (used from IDLE), so it's still needed. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 336 | |
| 337 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 338 | .. c:function:: int PySignal_SetWakeupFd(int fd) |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 339 | |
| 340 | This utility function specifies a file descriptor to which a ``'\0'`` byte will |
| 341 | be written whenever a signal is received. It returns the previous such file |
| 342 | descriptor. The value ``-1`` disables the feature; this is the initial state. |
| 343 | This is equivalent to :func:`signal.set_wakeup_fd` in Python, but without any |
| 344 | error checking. *fd* should be a valid file descriptor. The function should |
| 345 | only be called from the main thread. |
| 346 | |
| 347 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 348 | .. c:function:: PyObject* PyErr_NewException(char *name, PyObject *base, PyObject *dict) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 349 | |
| 350 | This utility function creates and returns a new exception object. The *name* |
| 351 | argument must be the name of the new exception, a C string of the form |
| 352 | ``module.class``. The *base* and *dict* arguments are normally *NULL*. This |
| 353 | creates a class object derived from :exc:`Exception` (accessible in C as |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 354 | :c:data:`PyExc_Exception`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 355 | |
| 356 | The :attr:`__module__` attribute of the new class is set to the first part (up |
| 357 | to the last dot) of the *name* argument, and the class name is set to the last |
| 358 | part (after the last dot). The *base* argument can be used to specify alternate |
| 359 | base classes; it can either be only one class or a tuple of classes. The *dict* |
| 360 | argument can be used to specify a dictionary of class variables and methods. |
| 361 | |
| 362 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 363 | .. c:function:: PyObject* PyErr_NewExceptionWithDoc(char *name, char *doc, PyObject *base, PyObject *dict) |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 364 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 365 | Same as :c:func:`PyErr_NewException`, except that the new exception class can |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 366 | easily be given a docstring: If *doc* is non-*NULL*, it will be used as the |
| 367 | docstring for the exception class. |
| 368 | |
| 369 | .. versionadded:: 3.2 |
| 370 | |
| 371 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 372 | .. c:function:: void PyErr_WriteUnraisable(PyObject *obj) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 373 | |
| 374 | This utility function prints a warning message to ``sys.stderr`` when an |
| 375 | exception has been set but it is impossible for the interpreter to actually |
| 376 | raise the exception. It is used, for example, when an exception occurs in an |
| 377 | :meth:`__del__` method. |
| 378 | |
| 379 | The function is called with a single argument *obj* that identifies the context |
| 380 | in which the unraisable exception occurred. The repr of *obj* will be printed in |
| 381 | the warning message. |
| 382 | |
| 383 | |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 384 | Exception Objects |
| 385 | ================= |
| 386 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 387 | .. c:function:: PyObject* PyException_GetTraceback(PyObject *ex) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 388 | |
| 389 | Return the traceback associated with the exception as a new reference, as |
| 390 | accessible from Python through :attr:`__traceback__`. If there is no |
| 391 | traceback associated, this returns *NULL*. |
| 392 | |
| 393 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 394 | .. c:function:: int PyException_SetTraceback(PyObject *ex, PyObject *tb) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 395 | |
| 396 | Set the traceback associated with the exception to *tb*. Use ``Py_None`` to |
| 397 | clear it. |
| 398 | |
| 399 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 400 | .. c:function:: PyObject* PyException_GetContext(PyObject *ex) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 401 | |
| 402 | Return the context (another exception instance during whose handling *ex* was |
| 403 | raised) associated with the exception as a new reference, as accessible from |
| 404 | Python through :attr:`__context__`. If there is no context associated, this |
| 405 | returns *NULL*. |
| 406 | |
| 407 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 408 | .. c:function:: void PyException_SetContext(PyObject *ex, PyObject *ctx) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 409 | |
| 410 | Set the context associated with the exception to *ctx*. Use *NULL* to clear |
| 411 | it. There is no type check to make sure that *ctx* is an exception instance. |
| 412 | This steals a reference to *ctx*. |
| 413 | |
| 414 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 415 | .. c:function:: PyObject* PyException_GetCause(PyObject *ex) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 416 | |
| 417 | Return the cause (another exception instance set by ``raise ... from ...``) |
| 418 | associated with the exception as a new reference, as accessible from Python |
| 419 | through :attr:`__cause__`. If there is no cause associated, this returns |
| 420 | *NULL*. |
| 421 | |
| 422 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 423 | .. c:function:: void PyException_SetCause(PyObject *ex, PyObject *ctx) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 424 | |
| 425 | Set the cause associated with the exception to *ctx*. Use *NULL* to clear |
| 426 | it. There is no type check to make sure that *ctx* is an exception instance. |
| 427 | This steals a reference to *ctx*. |
| 428 | |
| 429 | |
Georg Brandl | 5a93265 | 2010-11-23 07:54:19 +0000 | [diff] [blame] | 430 | .. _unicodeexceptions: |
| 431 | |
| 432 | Unicode Exception Objects |
| 433 | ========================= |
| 434 | |
| 435 | The following functions are used to create and modify Unicode exceptions from C. |
| 436 | |
| 437 | .. 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) |
| 438 | |
| 439 | Create a :class:`UnicodeDecodeError` object with the attributes *encoding*, |
| 440 | *object*, *length*, *start*, *end* and *reason*. |
| 441 | |
| 442 | .. 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) |
| 443 | |
| 444 | Create a :class:`UnicodeEncodeError` object with the attributes *encoding*, |
| 445 | *object*, *length*, *start*, *end* and *reason*. |
| 446 | |
| 447 | .. c:function:: PyObject* PyUnicodeTranslateError_Create(const Py_UNICODE *object, Py_ssize_t length, Py_ssize_t start, Py_ssize_t end, const char *reason) |
| 448 | |
| 449 | Create a :class:`UnicodeTranslateError` object with the attributes *object*, |
| 450 | *length*, *start*, *end* and *reason*. |
| 451 | |
| 452 | .. c:function:: PyObject* PyUnicodeDecodeError_GetEncoding(PyObject *exc) |
| 453 | PyObject* PyUnicodeEncodeError_GetEncoding(PyObject *exc) |
| 454 | |
| 455 | Return the *encoding* attribute of the given exception object. |
| 456 | |
| 457 | .. c:function:: PyObject* PyUnicodeDecodeError_GetObject(PyObject *exc) |
| 458 | PyObject* PyUnicodeEncodeError_GetObject(PyObject *exc) |
| 459 | PyObject* PyUnicodeTranslateError_GetObject(PyObject *exc) |
| 460 | |
| 461 | Return the *object* attribute of the given exception object. |
| 462 | |
| 463 | .. c:function:: int PyUnicodeDecodeError_GetStart(PyObject *exc, Py_ssize_t *start) |
| 464 | int PyUnicodeEncodeError_GetStart(PyObject *exc, Py_ssize_t *start) |
| 465 | int PyUnicodeTranslateError_GetStart(PyObject *exc, Py_ssize_t *start) |
| 466 | |
| 467 | Get the *start* attribute of the given exception object and place it into |
| 468 | *\*start*. *start* must not be *NULL*. Return ``0`` on success, ``-1`` on |
| 469 | failure. |
| 470 | |
| 471 | .. c:function:: int PyUnicodeDecodeError_SetStart(PyObject *exc, Py_ssize_t start) |
| 472 | int PyUnicodeEncodeError_SetStart(PyObject *exc, Py_ssize_t start) |
| 473 | int PyUnicodeTranslateError_SetStart(PyObject *exc, Py_ssize_t start) |
| 474 | |
| 475 | Set the *start* attribute of the given exception object to *start*. Return |
| 476 | ``0`` on success, ``-1`` on failure. |
| 477 | |
| 478 | .. c:function:: int PyUnicodeDecodeError_GetEnd(PyObject *exc, Py_ssize_t *end) |
| 479 | int PyUnicodeEncodeError_GetEnd(PyObject *exc, Py_ssize_t *end) |
| 480 | int PyUnicodeTranslateError_GetEnd(PyObject *exc, Py_ssize_t *end) |
| 481 | |
| 482 | Get the *end* attribute of the given exception object and place it into |
| 483 | *\*end*. *end* must not be *NULL*. Return ``0`` on success, ``-1`` on |
| 484 | failure. |
| 485 | |
| 486 | .. c:function:: int PyUnicodeDecodeError_SetEnd(PyObject *exc, Py_ssize_t end) |
| 487 | int PyUnicodeEncodeError_SetEnd(PyObject *exc, Py_ssize_t end) |
| 488 | int PyUnicodeTranslateError_SetEnd(PyObject *exc, Py_ssize_t end) |
| 489 | |
| 490 | Set the *end* attribute of the given exception object to *end*. Return ``0`` |
| 491 | on success, ``-1`` on failure. |
| 492 | |
| 493 | .. c:function:: PyObject* PyUnicodeDecodeError_GetReason(PyObject *exc) |
| 494 | PyObject* PyUnicodeEncodeError_GetReason(PyObject *exc) |
| 495 | PyObject* PyUnicodeTranslateError_GetReason(PyObject *exc) |
| 496 | |
| 497 | Return the *reason* attribute of the given exception object. |
| 498 | |
| 499 | .. c:function:: int PyUnicodeDecodeError_SetReason(PyObject *exc, const char *reason) |
| 500 | int PyUnicodeEncodeError_SetReason(PyObject *exc, const char *reason) |
| 501 | int PyUnicodeTranslateError_SetReason(PyObject *exc, const char *reason) |
| 502 | |
| 503 | Set the *reason* attribute of the given exception object to *reason*. Return |
| 504 | ``0`` on success, ``-1`` on failure. |
| 505 | |
| 506 | |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 507 | Recursion Control |
| 508 | ================= |
| 509 | |
| 510 | These two functions provide a way to perform safe recursive calls at the C |
| 511 | level, both in the core and in extension modules. They are needed if the |
| 512 | recursive code does not necessarily invoke Python code (which tracks its |
| 513 | recursion depth automatically). |
| 514 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 515 | .. c:function:: int Py_EnterRecursiveCall(char *where) |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 516 | |
| 517 | Marks a point where a recursive C-level call is about to be performed. |
| 518 | |
| 519 | If :const:`USE_STACKCHECK` is defined, this function checks if the the OS |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 520 | stack overflowed using :c:func:`PyOS_CheckStack`. In this is the case, it |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 521 | sets a :exc:`MemoryError` and returns a nonzero value. |
| 522 | |
| 523 | The function then checks if the recursion limit is reached. If this is the |
| 524 | case, a :exc:`RuntimeError` is set and a nonzero value is returned. |
| 525 | Otherwise, zero is returned. |
| 526 | |
| 527 | *where* should be a string such as ``" in instance check"`` to be |
| 528 | concatenated to the :exc:`RuntimeError` message caused by the recursion depth |
| 529 | limit. |
| 530 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 531 | .. c:function:: void Py_LeaveRecursiveCall() |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 532 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 533 | Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each |
| 534 | *successful* invocation of :c:func:`Py_EnterRecursiveCall`. |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 535 | |
Daniel Stutzbach | 7cb3051 | 2010-12-17 16:31:32 +0000 | [diff] [blame] | 536 | Properly implementing :attr:`tp_repr` for container types requires |
| 537 | special recursion handling. In addition to protecting the stack, |
| 538 | :attr:`tp_repr` also needs to track objects to prevent cycles. The |
| 539 | following two functions facilitate this functionality. Effectively, |
| 540 | these are the C equivalent to :func:`reprlib.recursive_repr`. |
| 541 | |
Daniel Stutzbach | c5895dc | 2010-12-17 22:28:07 +0000 | [diff] [blame^] | 542 | .. c:function:: int Py_ReprEnter(PyObject *object) |
Daniel Stutzbach | 7cb3051 | 2010-12-17 16:31:32 +0000 | [diff] [blame] | 543 | |
| 544 | Called at the beginning of the :attr:`tp_repr` implementation to |
| 545 | detect cycles. |
| 546 | |
| 547 | If the object has already been processed, the function returns a |
| 548 | positive integer. In that case the :attr:`tp_repr` implementation |
| 549 | should return a string object indicating a cycle. As examples, |
| 550 | :class:`dict` objects return ``{...}`` and :class:`list` objects |
| 551 | return ``[...]``. |
| 552 | |
| 553 | The function will return a negative integer if the recursion limit |
| 554 | is reached. In that case the :attr:`tp_repr` implementation should |
| 555 | typically return ``NULL``. |
| 556 | |
| 557 | Otherwise, the function returns zero and the :attr:`tp_repr` |
| 558 | implementation can continue normally. |
| 559 | |
| 560 | .. c:function:: void Py_ReprLeave(PyObject *object) |
| 561 | |
Daniel Stutzbach | c5895dc | 2010-12-17 22:28:07 +0000 | [diff] [blame^] | 562 | Ends a :c:func:`Py_ReprEnter`. Must be called once for each |
| 563 | invocation of :c:func:`Py_ReprEnter` that returns zero. |
Daniel Stutzbach | 7cb3051 | 2010-12-17 16:31:32 +0000 | [diff] [blame] | 564 | |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 565 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 566 | .. _standardexceptions: |
| 567 | |
| 568 | Standard Exceptions |
| 569 | =================== |
| 570 | |
| 571 | All standard Python exceptions are available as global variables whose names are |
| 572 | ``PyExc_`` followed by the Python exception name. These have the type |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 573 | :c:type:`PyObject\*`; they are all class objects. For completeness, here are all |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 574 | the variables: |
| 575 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 576 | +-------------------------------------+----------------------------+----------+ |
| 577 | | C Name | Python Name | Notes | |
| 578 | +=====================================+============================+==========+ |
| 579 | | :c:data:`PyExc_BaseException` | :exc:`BaseException` | \(1) | |
| 580 | +-------------------------------------+----------------------------+----------+ |
| 581 | | :c:data:`PyExc_Exception` | :exc:`Exception` | \(1) | |
| 582 | +-------------------------------------+----------------------------+----------+ |
| 583 | | :c:data:`PyExc_ArithmeticError` | :exc:`ArithmeticError` | \(1) | |
| 584 | +-------------------------------------+----------------------------+----------+ |
| 585 | | :c:data:`PyExc_LookupError` | :exc:`LookupError` | \(1) | |
| 586 | +-------------------------------------+----------------------------+----------+ |
| 587 | | :c:data:`PyExc_AssertionError` | :exc:`AssertionError` | | |
| 588 | +-------------------------------------+----------------------------+----------+ |
| 589 | | :c:data:`PyExc_AttributeError` | :exc:`AttributeError` | | |
| 590 | +-------------------------------------+----------------------------+----------+ |
| 591 | | :c:data:`PyExc_EOFError` | :exc:`EOFError` | | |
| 592 | +-------------------------------------+----------------------------+----------+ |
| 593 | | :c:data:`PyExc_EnvironmentError` | :exc:`EnvironmentError` | \(1) | |
| 594 | +-------------------------------------+----------------------------+----------+ |
| 595 | | :c:data:`PyExc_FloatingPointError` | :exc:`FloatingPointError` | | |
| 596 | +-------------------------------------+----------------------------+----------+ |
| 597 | | :c:data:`PyExc_IOError` | :exc:`IOError` | | |
| 598 | +-------------------------------------+----------------------------+----------+ |
| 599 | | :c:data:`PyExc_ImportError` | :exc:`ImportError` | | |
| 600 | +-------------------------------------+----------------------------+----------+ |
| 601 | | :c:data:`PyExc_IndexError` | :exc:`IndexError` | | |
| 602 | +-------------------------------------+----------------------------+----------+ |
| 603 | | :c:data:`PyExc_KeyError` | :exc:`KeyError` | | |
| 604 | +-------------------------------------+----------------------------+----------+ |
| 605 | | :c:data:`PyExc_KeyboardInterrupt` | :exc:`KeyboardInterrupt` | | |
| 606 | +-------------------------------------+----------------------------+----------+ |
| 607 | | :c:data:`PyExc_MemoryError` | :exc:`MemoryError` | | |
| 608 | +-------------------------------------+----------------------------+----------+ |
| 609 | | :c:data:`PyExc_NameError` | :exc:`NameError` | | |
| 610 | +-------------------------------------+----------------------------+----------+ |
| 611 | | :c:data:`PyExc_NotImplementedError` | :exc:`NotImplementedError` | | |
| 612 | +-------------------------------------+----------------------------+----------+ |
| 613 | | :c:data:`PyExc_OSError` | :exc:`OSError` | | |
| 614 | +-------------------------------------+----------------------------+----------+ |
| 615 | | :c:data:`PyExc_OverflowError` | :exc:`OverflowError` | | |
| 616 | +-------------------------------------+----------------------------+----------+ |
| 617 | | :c:data:`PyExc_ReferenceError` | :exc:`ReferenceError` | \(2) | |
| 618 | +-------------------------------------+----------------------------+----------+ |
| 619 | | :c:data:`PyExc_RuntimeError` | :exc:`RuntimeError` | | |
| 620 | +-------------------------------------+----------------------------+----------+ |
| 621 | | :c:data:`PyExc_SyntaxError` | :exc:`SyntaxError` | | |
| 622 | +-------------------------------------+----------------------------+----------+ |
| 623 | | :c:data:`PyExc_SystemError` | :exc:`SystemError` | | |
| 624 | +-------------------------------------+----------------------------+----------+ |
| 625 | | :c:data:`PyExc_SystemExit` | :exc:`SystemExit` | | |
| 626 | +-------------------------------------+----------------------------+----------+ |
| 627 | | :c:data:`PyExc_TypeError` | :exc:`TypeError` | | |
| 628 | +-------------------------------------+----------------------------+----------+ |
| 629 | | :c:data:`PyExc_ValueError` | :exc:`ValueError` | | |
| 630 | +-------------------------------------+----------------------------+----------+ |
| 631 | | :c:data:`PyExc_WindowsError` | :exc:`WindowsError` | \(3) | |
| 632 | +-------------------------------------+----------------------------+----------+ |
| 633 | | :c:data:`PyExc_ZeroDivisionError` | :exc:`ZeroDivisionError` | | |
| 634 | +-------------------------------------+----------------------------+----------+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 635 | |
| 636 | .. index:: |
| 637 | single: PyExc_BaseException |
| 638 | single: PyExc_Exception |
| 639 | single: PyExc_ArithmeticError |
| 640 | single: PyExc_LookupError |
| 641 | single: PyExc_AssertionError |
| 642 | single: PyExc_AttributeError |
| 643 | single: PyExc_EOFError |
| 644 | single: PyExc_EnvironmentError |
| 645 | single: PyExc_FloatingPointError |
| 646 | single: PyExc_IOError |
| 647 | single: PyExc_ImportError |
| 648 | single: PyExc_IndexError |
| 649 | single: PyExc_KeyError |
| 650 | single: PyExc_KeyboardInterrupt |
| 651 | single: PyExc_MemoryError |
| 652 | single: PyExc_NameError |
| 653 | single: PyExc_NotImplementedError |
| 654 | single: PyExc_OSError |
| 655 | single: PyExc_OverflowError |
| 656 | single: PyExc_ReferenceError |
| 657 | single: PyExc_RuntimeError |
| 658 | single: PyExc_SyntaxError |
| 659 | single: PyExc_SystemError |
| 660 | single: PyExc_SystemExit |
| 661 | single: PyExc_TypeError |
| 662 | single: PyExc_ValueError |
| 663 | single: PyExc_WindowsError |
| 664 | single: PyExc_ZeroDivisionError |
| 665 | |
| 666 | Notes: |
| 667 | |
| 668 | (1) |
| 669 | This is a base class for other standard exceptions. |
| 670 | |
| 671 | (2) |
| 672 | This is the same as :exc:`weakref.ReferenceError`. |
| 673 | |
| 674 | (3) |
| 675 | Only defined on Windows; protect code that uses this by testing that the |
| 676 | preprocessor macro ``MS_WINDOWS`` is defined. |