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 | |
| 148 | This function sets the error indicator and returns *NULL*. *exception* should be |
Victor Stinner | 1205f27 | 2010-09-11 00:54:47 +0000 | [diff] [blame] | 149 | a Python exception (class, not an instance). *format* should be an ASCII-encoded string, |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 150 | containing format codes, similar to :c:func:`printf`. The ``width.precision`` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 151 | before a format code is parsed, but the width part is ignored. |
| 152 | |
| 153 | .. % This should be exactly the same as the table in PyString_FromFormat. |
| 154 | .. % One should just refer to the other. |
| 155 | .. % The descriptions for %zd and %zu are wrong, but the truth is complicated |
| 156 | .. % because not all compilers support the %z width modifier -- we fake it |
| 157 | .. % when necessary via interpolating PY_FORMAT_SIZE_T. |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 158 | .. % Similar comments apply to the %ll width modifier and |
| 159 | .. % PY_FORMAT_LONG_LONG. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 160 | |
| 161 | +-------------------+---------------+--------------------------------+ |
| 162 | | Format Characters | Type | Comment | |
| 163 | +===================+===============+================================+ |
| 164 | | :attr:`%%` | *n/a* | The literal % character. | |
| 165 | +-------------------+---------------+--------------------------------+ |
| 166 | | :attr:`%c` | int | A single character, | |
| 167 | | | | represented as an C int. | |
| 168 | +-------------------+---------------+--------------------------------+ |
| 169 | | :attr:`%d` | int | Exactly equivalent to | |
| 170 | | | | ``printf("%d")``. | |
| 171 | +-------------------+---------------+--------------------------------+ |
| 172 | | :attr:`%u` | unsigned int | Exactly equivalent to | |
| 173 | | | | ``printf("%u")``. | |
| 174 | +-------------------+---------------+--------------------------------+ |
| 175 | | :attr:`%ld` | long | Exactly equivalent to | |
| 176 | | | | ``printf("%ld")``. | |
| 177 | +-------------------+---------------+--------------------------------+ |
| 178 | | :attr:`%lu` | unsigned long | Exactly equivalent to | |
| 179 | | | | ``printf("%lu")``. | |
| 180 | +-------------------+---------------+--------------------------------+ |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 181 | | :attr:`%lld` | long long | Exactly equivalent to | |
| 182 | | | | ``printf("%lld")``. | |
| 183 | +-------------------+---------------+--------------------------------+ |
| 184 | | :attr:`%llu` | unsigned | Exactly equivalent to | |
| 185 | | | long long | ``printf("%llu")``. | |
| 186 | +-------------------+---------------+--------------------------------+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 187 | | :attr:`%zd` | Py_ssize_t | Exactly equivalent to | |
| 188 | | | | ``printf("%zd")``. | |
| 189 | +-------------------+---------------+--------------------------------+ |
| 190 | | :attr:`%zu` | size_t | Exactly equivalent to | |
| 191 | | | | ``printf("%zu")``. | |
| 192 | +-------------------+---------------+--------------------------------+ |
| 193 | | :attr:`%i` | int | Exactly equivalent to | |
| 194 | | | | ``printf("%i")``. | |
| 195 | +-------------------+---------------+--------------------------------+ |
| 196 | | :attr:`%x` | int | Exactly equivalent to | |
| 197 | | | | ``printf("%x")``. | |
| 198 | +-------------------+---------------+--------------------------------+ |
| 199 | | :attr:`%s` | char\* | A null-terminated C character | |
| 200 | | | | array. | |
| 201 | +-------------------+---------------+--------------------------------+ |
| 202 | | :attr:`%p` | void\* | The hex representation of a C | |
| 203 | | | | pointer. Mostly equivalent to | |
| 204 | | | | ``printf("%p")`` except that | |
| 205 | | | | it is guaranteed to start with | |
| 206 | | | | the literal ``0x`` regardless | |
| 207 | | | | of what the platform's | |
| 208 | | | | ``printf`` yields. | |
| 209 | +-------------------+---------------+--------------------------------+ |
| 210 | |
| 211 | An unrecognized format character causes all the rest of the format string to be |
| 212 | copied as-is to the result string, and any extra arguments discarded. |
| 213 | |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 214 | .. note:: |
| 215 | |
| 216 | The `"%lld"` and `"%llu"` format specifiers are only available |
Georg Brandl | ef871f6 | 2010-03-12 10:06:40 +0000 | [diff] [blame] | 217 | when :const:`HAVE_LONG_LONG` is defined. |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 218 | |
| 219 | .. versionchanged:: 3.2 |
| 220 | Support for `"%lld"` and `"%llu"` added. |
| 221 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 222 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 223 | .. c:function:: void PyErr_SetNone(PyObject *type) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 224 | |
| 225 | This is a shorthand for ``PyErr_SetObject(type, Py_None)``. |
| 226 | |
| 227 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 228 | .. c:function:: int PyErr_BadArgument() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 229 | |
| 230 | This is a shorthand for ``PyErr_SetString(PyExc_TypeError, message)``, where |
| 231 | *message* indicates that a built-in operation was invoked with an illegal |
| 232 | argument. It is mostly for internal use. |
| 233 | |
| 234 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 235 | .. c:function:: PyObject* PyErr_NoMemory() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 236 | |
| 237 | This is a shorthand for ``PyErr_SetNone(PyExc_MemoryError)``; it returns *NULL* |
| 238 | so an object allocation function can write ``return PyErr_NoMemory();`` when it |
| 239 | runs out of memory. |
| 240 | |
| 241 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 242 | .. c:function:: PyObject* PyErr_SetFromErrno(PyObject *type) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 243 | |
| 244 | .. index:: single: strerror() |
| 245 | |
| 246 | 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] | 247 | has returned an error and set the C variable :c:data:`errno`. It constructs a |
| 248 | tuple object whose first item is the integer :c:data:`errno` value and whose |
| 249 | second item is the corresponding error message (gotten from :c:func:`strerror`), |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 250 | and then calls ``PyErr_SetObject(type, object)``. On Unix, when the |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 251 | :c:data:`errno` value is :const:`EINTR`, indicating an interrupted system call, |
| 252 | 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] | 253 | leaves it set to that. The function always returns *NULL*, so a wrapper |
| 254 | function around a system call can write ``return PyErr_SetFromErrno(type);`` |
| 255 | when the system call returns an error. |
| 256 | |
| 257 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 258 | .. c:function:: PyObject* PyErr_SetFromErrnoWithFilename(PyObject *type, const char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 259 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 260 | Similar to :c:func:`PyErr_SetFromErrno`, with the additional behavior that if |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 261 | *filename* is not *NULL*, it is passed to the constructor of *type* as a third |
| 262 | parameter. In the case of exceptions such as :exc:`IOError` and :exc:`OSError`, |
| 263 | 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] | 264 | *filename* is decoded from the filesystem encoding |
| 265 | (:func:`sys.getfilesystemencoding`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 266 | |
| 267 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 268 | .. c:function:: PyObject* PyErr_SetFromWindowsErr(int ierr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 269 | |
| 270 | This is a convenience function to raise :exc:`WindowsError`. If called with |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 271 | *ierr* of :c:data:`0`, the error code returned by a call to :c:func:`GetLastError` |
| 272 | is used instead. It calls the Win32 function :c:func:`FormatMessage` to retrieve |
| 273 | 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] | 274 | then it constructs a tuple object whose first item is the *ierr* value and whose |
| 275 | second item is the corresponding error message (gotten from |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 276 | :c:func:`FormatMessage`), and then calls ``PyErr_SetObject(PyExc_WindowsError, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 277 | object)``. This function always returns *NULL*. Availability: Windows. |
| 278 | |
| 279 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 280 | .. c:function:: PyObject* PyErr_SetExcFromWindowsErr(PyObject *type, int ierr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 281 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 282 | Similar to :c:func:`PyErr_SetFromWindowsErr`, with an additional parameter |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 283 | specifying the exception type to be raised. Availability: Windows. |
| 284 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 285 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 286 | .. c:function:: PyObject* PyErr_SetFromWindowsErrWithFilename(int ierr, const char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 287 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 288 | Similar to :c:func:`PyErr_SetFromWindowsErr`, with the additional behavior that |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 289 | if *filename* is not *NULL*, it is passed to the constructor of |
| 290 | :exc:`WindowsError` as a third parameter. Availability: Windows. |
| 291 | |
| 292 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 293 | .. c:function:: PyObject* PyErr_SetExcFromWindowsErrWithFilename(PyObject *type, int ierr, char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 294 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 295 | Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 296 | parameter specifying the exception type to be raised. Availability: Windows. |
| 297 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 298 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 299 | .. c:function:: void PyErr_SyntaxLocationEx(char *filename, int lineno, int col_offset) |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 300 | |
| 301 | Set file, line, and offset information for the current exception. If the |
| 302 | current exception is not a :exc:`SyntaxError`, then it sets additional |
| 303 | attributes, which make the exception printing subsystem think the exception |
| 304 | is a :exc:`SyntaxError`. |
| 305 | |
Benjamin Peterson | b5d23b4 | 2010-09-21 21:29:26 +0000 | [diff] [blame] | 306 | .. versionadded:: 3.2 |
| 307 | |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 308 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 309 | .. c:function:: void PyErr_SyntaxLocation(char *filename, int lineno) |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 310 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 311 | Like :c:func:`PyErr_SyntaxLocationExc`, but the col_offset parameter is |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 312 | omitted. |
| 313 | |
| 314 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 315 | .. c:function:: void PyErr_BadInternalCall() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 316 | |
Benjamin Peterson | 5c6d787 | 2009-02-06 02:40:07 +0000 | [diff] [blame] | 317 | This is a shorthand for ``PyErr_SetString(PyExc_SystemError, message)``, |
| 318 | where *message* indicates that an internal operation (e.g. a Python/C API |
| 319 | function) was invoked with an illegal argument. It is mostly for internal |
| 320 | use. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 321 | |
| 322 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 323 | .. c:function:: int PyErr_WarnEx(PyObject *category, char *message, int stack_level) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 324 | |
| 325 | Issue a warning message. The *category* argument is a warning category (see |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 326 | 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] | 327 | 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] | 328 | 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] | 329 | 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] | 330 | and so forth. |
| 331 | |
| 332 | This function normally prints a warning message to *sys.stderr*; however, it is |
| 333 | also possible that the user has specified that warnings are to be turned into |
| 334 | errors, and in that case this will raise an exception. It is also possible that |
| 335 | the function raises an exception because of a problem with the warning machinery |
| 336 | (the implementation imports the :mod:`warnings` module to do the heavy lifting). |
| 337 | The return value is ``0`` if no exception is raised, or ``-1`` if an exception |
| 338 | is raised. (It is not possible to determine whether a warning message is |
| 339 | actually printed, nor what the reason is for the exception; this is |
| 340 | intentional.) If an exception is raised, the caller should do its normal |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 341 | exception handling (for example, :c:func:`Py_DECREF` owned references and return |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 342 | an error value). |
| 343 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 344 | Warning categories must be subclasses of :c:data:`Warning`; the default warning |
| 345 | category is :c:data:`RuntimeWarning`. The standard Python warning categories are |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 346 | available as global variables whose names are ``PyExc_`` followed by the Python |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 347 | exception name. These have the type :c:type:`PyObject\*`; they are all class |
| 348 | objects. Their names are :c:data:`PyExc_Warning`, :c:data:`PyExc_UserWarning`, |
| 349 | :c:data:`PyExc_UnicodeWarning`, :c:data:`PyExc_DeprecationWarning`, |
| 350 | :c:data:`PyExc_SyntaxWarning`, :c:data:`PyExc_RuntimeWarning`, and |
| 351 | :c:data:`PyExc_FutureWarning`. :c:data:`PyExc_Warning` is a subclass of |
| 352 | :c:data:`PyExc_Exception`; the other warning categories are subclasses of |
| 353 | :c:data:`PyExc_Warning`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 354 | |
| 355 | For information about warning control, see the documentation for the |
| 356 | :mod:`warnings` module and the :option:`-W` option in the command line |
| 357 | documentation. There is no C API for warning control. |
| 358 | |
| 359 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 360 | .. 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] | 361 | |
| 362 | Issue a warning message with explicit control over all warning attributes. This |
| 363 | is a straightforward wrapper around the Python function |
| 364 | :func:`warnings.warn_explicit`, see there for more information. The *module* |
| 365 | and *registry* arguments may be set to *NULL* to get the default effect |
| 366 | described there. |
| 367 | |
| 368 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 369 | .. 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] | 370 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 371 | Function similar to :c:func:`PyErr_WarnEx`, but use |
| 372 | :c:func:`PyUnicode_FromFormatV` to format the warning message. |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 373 | |
| 374 | .. versionadded:: 3.2 |
| 375 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 376 | .. c:function:: int PyErr_CheckSignals() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 377 | |
| 378 | .. index:: |
| 379 | module: signal |
| 380 | single: SIGINT |
| 381 | single: KeyboardInterrupt (built-in exception) |
| 382 | |
| 383 | This function interacts with Python's signal handling. It checks whether a |
| 384 | signal has been sent to the processes and if so, invokes the corresponding |
| 385 | signal handler. If the :mod:`signal` module is supported, this can invoke a |
| 386 | signal handler written in Python. In all cases, the default effect for |
| 387 | :const:`SIGINT` is to raise the :exc:`KeyboardInterrupt` exception. If an |
| 388 | exception is raised the error indicator is set and the function returns ``-1``; |
| 389 | otherwise the function returns ``0``. The error indicator may or may not be |
| 390 | cleared if it was previously set. |
| 391 | |
| 392 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 393 | .. c:function:: void PyErr_SetInterrupt() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 394 | |
| 395 | .. index:: |
| 396 | single: SIGINT |
| 397 | single: KeyboardInterrupt (built-in exception) |
| 398 | |
| 399 | This function simulates the effect of a :const:`SIGINT` signal arriving --- the |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 400 | next time :c:func:`PyErr_CheckSignals` is called, :exc:`KeyboardInterrupt` will |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 401 | be raised. It may be called without holding the interpreter lock. |
| 402 | |
| 403 | .. % XXX This was described as obsolete, but is used in |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 404 | .. % _thread.interrupt_main() (used from IDLE), so it's still needed. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 405 | |
| 406 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 407 | .. c:function:: int PySignal_SetWakeupFd(int fd) |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 408 | |
| 409 | This utility function specifies a file descriptor to which a ``'\0'`` byte will |
| 410 | be written whenever a signal is received. It returns the previous such file |
| 411 | descriptor. The value ``-1`` disables the feature; this is the initial state. |
| 412 | This is equivalent to :func:`signal.set_wakeup_fd` in Python, but without any |
| 413 | error checking. *fd* should be a valid file descriptor. The function should |
| 414 | only be called from the main thread. |
| 415 | |
| 416 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 417 | .. c:function:: PyObject* PyErr_NewException(char *name, PyObject *base, PyObject *dict) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 418 | |
| 419 | This utility function creates and returns a new exception object. The *name* |
| 420 | argument must be the name of the new exception, a C string of the form |
| 421 | ``module.class``. The *base* and *dict* arguments are normally *NULL*. This |
| 422 | creates a class object derived from :exc:`Exception` (accessible in C as |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 423 | :c:data:`PyExc_Exception`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 424 | |
| 425 | The :attr:`__module__` attribute of the new class is set to the first part (up |
| 426 | to the last dot) of the *name* argument, and the class name is set to the last |
| 427 | part (after the last dot). The *base* argument can be used to specify alternate |
| 428 | base classes; it can either be only one class or a tuple of classes. The *dict* |
| 429 | argument can be used to specify a dictionary of class variables and methods. |
| 430 | |
| 431 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 432 | .. 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] | 433 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 434 | 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] | 435 | easily be given a docstring: If *doc* is non-*NULL*, it will be used as the |
| 436 | docstring for the exception class. |
| 437 | |
| 438 | .. versionadded:: 3.2 |
| 439 | |
| 440 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 441 | .. c:function:: void PyErr_WriteUnraisable(PyObject *obj) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 442 | |
| 443 | This utility function prints a warning message to ``sys.stderr`` when an |
| 444 | exception has been set but it is impossible for the interpreter to actually |
| 445 | raise the exception. It is used, for example, when an exception occurs in an |
| 446 | :meth:`__del__` method. |
| 447 | |
| 448 | The function is called with a single argument *obj* that identifies the context |
| 449 | in which the unraisable exception occurred. The repr of *obj* will be printed in |
| 450 | the warning message. |
| 451 | |
| 452 | |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 453 | Exception Objects |
| 454 | ================= |
| 455 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 456 | .. c:function:: PyObject* PyException_GetTraceback(PyObject *ex) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 457 | |
| 458 | Return the traceback associated with the exception as a new reference, as |
| 459 | accessible from Python through :attr:`__traceback__`. If there is no |
| 460 | traceback associated, this returns *NULL*. |
| 461 | |
| 462 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 463 | .. c:function:: int PyException_SetTraceback(PyObject *ex, PyObject *tb) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 464 | |
| 465 | Set the traceback associated with the exception to *tb*. Use ``Py_None`` to |
| 466 | clear it. |
| 467 | |
| 468 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 469 | .. c:function:: PyObject* PyException_GetContext(PyObject *ex) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 470 | |
| 471 | Return the context (another exception instance during whose handling *ex* was |
| 472 | raised) associated with the exception as a new reference, as accessible from |
| 473 | Python through :attr:`__context__`. If there is no context associated, this |
| 474 | returns *NULL*. |
| 475 | |
| 476 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 477 | .. c:function:: void PyException_SetContext(PyObject *ex, PyObject *ctx) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 478 | |
| 479 | Set the context associated with the exception to *ctx*. Use *NULL* to clear |
| 480 | it. There is no type check to make sure that *ctx* is an exception instance. |
| 481 | This steals a reference to *ctx*. |
| 482 | |
| 483 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 484 | .. c:function:: PyObject* PyException_GetCause(PyObject *ex) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 485 | |
| 486 | Return the cause (another exception instance set by ``raise ... from ...``) |
| 487 | associated with the exception as a new reference, as accessible from Python |
| 488 | through :attr:`__cause__`. If there is no cause associated, this returns |
| 489 | *NULL*. |
| 490 | |
| 491 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 492 | .. c:function:: void PyException_SetCause(PyObject *ex, PyObject *ctx) |
Georg Brandl | ab6f2f6 | 2009-03-31 04:16:10 +0000 | [diff] [blame] | 493 | |
| 494 | Set the cause associated with the exception to *ctx*. Use *NULL* to clear |
| 495 | it. There is no type check to make sure that *ctx* is an exception instance. |
| 496 | This steals a reference to *ctx*. |
| 497 | |
| 498 | |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 499 | Recursion Control |
| 500 | ================= |
| 501 | |
| 502 | These two functions provide a way to perform safe recursive calls at the C |
| 503 | level, both in the core and in extension modules. They are needed if the |
| 504 | recursive code does not necessarily invoke Python code (which tracks its |
| 505 | recursion depth automatically). |
| 506 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 507 | .. c:function:: int Py_EnterRecursiveCall(char *where) |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 508 | |
| 509 | Marks a point where a recursive C-level call is about to be performed. |
| 510 | |
| 511 | 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] | 512 | 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] | 513 | sets a :exc:`MemoryError` and returns a nonzero value. |
| 514 | |
| 515 | The function then checks if the recursion limit is reached. If this is the |
| 516 | case, a :exc:`RuntimeError` is set and a nonzero value is returned. |
| 517 | Otherwise, zero is returned. |
| 518 | |
| 519 | *where* should be a string such as ``" in instance check"`` to be |
| 520 | concatenated to the :exc:`RuntimeError` message caused by the recursion depth |
| 521 | limit. |
| 522 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 523 | .. c:function:: void Py_LeaveRecursiveCall() |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 524 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 525 | Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each |
| 526 | *successful* invocation of :c:func:`Py_EnterRecursiveCall`. |
Georg Brandl | 93dc9eb | 2010-03-14 10:56:14 +0000 | [diff] [blame] | 527 | |
| 528 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 529 | .. _standardexceptions: |
| 530 | |
| 531 | Standard Exceptions |
| 532 | =================== |
| 533 | |
| 534 | All standard Python exceptions are available as global variables whose names are |
| 535 | ``PyExc_`` followed by the Python exception name. These have the type |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 536 | :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] | 537 | the variables: |
| 538 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 539 | +-------------------------------------+----------------------------+----------+ |
| 540 | | C Name | Python Name | Notes | |
| 541 | +=====================================+============================+==========+ |
| 542 | | :c:data:`PyExc_BaseException` | :exc:`BaseException` | \(1) | |
| 543 | +-------------------------------------+----------------------------+----------+ |
| 544 | | :c:data:`PyExc_Exception` | :exc:`Exception` | \(1) | |
| 545 | +-------------------------------------+----------------------------+----------+ |
| 546 | | :c:data:`PyExc_ArithmeticError` | :exc:`ArithmeticError` | \(1) | |
| 547 | +-------------------------------------+----------------------------+----------+ |
| 548 | | :c:data:`PyExc_LookupError` | :exc:`LookupError` | \(1) | |
| 549 | +-------------------------------------+----------------------------+----------+ |
| 550 | | :c:data:`PyExc_AssertionError` | :exc:`AssertionError` | | |
| 551 | +-------------------------------------+----------------------------+----------+ |
| 552 | | :c:data:`PyExc_AttributeError` | :exc:`AttributeError` | | |
| 553 | +-------------------------------------+----------------------------+----------+ |
| 554 | | :c:data:`PyExc_EOFError` | :exc:`EOFError` | | |
| 555 | +-------------------------------------+----------------------------+----------+ |
| 556 | | :c:data:`PyExc_EnvironmentError` | :exc:`EnvironmentError` | \(1) | |
| 557 | +-------------------------------------+----------------------------+----------+ |
| 558 | | :c:data:`PyExc_FloatingPointError` | :exc:`FloatingPointError` | | |
| 559 | +-------------------------------------+----------------------------+----------+ |
| 560 | | :c:data:`PyExc_IOError` | :exc:`IOError` | | |
| 561 | +-------------------------------------+----------------------------+----------+ |
| 562 | | :c:data:`PyExc_ImportError` | :exc:`ImportError` | | |
| 563 | +-------------------------------------+----------------------------+----------+ |
| 564 | | :c:data:`PyExc_IndexError` | :exc:`IndexError` | | |
| 565 | +-------------------------------------+----------------------------+----------+ |
| 566 | | :c:data:`PyExc_KeyError` | :exc:`KeyError` | | |
| 567 | +-------------------------------------+----------------------------+----------+ |
| 568 | | :c:data:`PyExc_KeyboardInterrupt` | :exc:`KeyboardInterrupt` | | |
| 569 | +-------------------------------------+----------------------------+----------+ |
| 570 | | :c:data:`PyExc_MemoryError` | :exc:`MemoryError` | | |
| 571 | +-------------------------------------+----------------------------+----------+ |
| 572 | | :c:data:`PyExc_NameError` | :exc:`NameError` | | |
| 573 | +-------------------------------------+----------------------------+----------+ |
| 574 | | :c:data:`PyExc_NotImplementedError` | :exc:`NotImplementedError` | | |
| 575 | +-------------------------------------+----------------------------+----------+ |
| 576 | | :c:data:`PyExc_OSError` | :exc:`OSError` | | |
| 577 | +-------------------------------------+----------------------------+----------+ |
| 578 | | :c:data:`PyExc_OverflowError` | :exc:`OverflowError` | | |
| 579 | +-------------------------------------+----------------------------+----------+ |
| 580 | | :c:data:`PyExc_ReferenceError` | :exc:`ReferenceError` | \(2) | |
| 581 | +-------------------------------------+----------------------------+----------+ |
| 582 | | :c:data:`PyExc_RuntimeError` | :exc:`RuntimeError` | | |
| 583 | +-------------------------------------+----------------------------+----------+ |
| 584 | | :c:data:`PyExc_SyntaxError` | :exc:`SyntaxError` | | |
| 585 | +-------------------------------------+----------------------------+----------+ |
| 586 | | :c:data:`PyExc_SystemError` | :exc:`SystemError` | | |
| 587 | +-------------------------------------+----------------------------+----------+ |
| 588 | | :c:data:`PyExc_SystemExit` | :exc:`SystemExit` | | |
| 589 | +-------------------------------------+----------------------------+----------+ |
| 590 | | :c:data:`PyExc_TypeError` | :exc:`TypeError` | | |
| 591 | +-------------------------------------+----------------------------+----------+ |
| 592 | | :c:data:`PyExc_ValueError` | :exc:`ValueError` | | |
| 593 | +-------------------------------------+----------------------------+----------+ |
| 594 | | :c:data:`PyExc_WindowsError` | :exc:`WindowsError` | \(3) | |
| 595 | +-------------------------------------+----------------------------+----------+ |
| 596 | | :c:data:`PyExc_ZeroDivisionError` | :exc:`ZeroDivisionError` | | |
| 597 | +-------------------------------------+----------------------------+----------+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 598 | |
| 599 | .. index:: |
| 600 | single: PyExc_BaseException |
| 601 | single: PyExc_Exception |
| 602 | single: PyExc_ArithmeticError |
| 603 | single: PyExc_LookupError |
| 604 | single: PyExc_AssertionError |
| 605 | single: PyExc_AttributeError |
| 606 | single: PyExc_EOFError |
| 607 | single: PyExc_EnvironmentError |
| 608 | single: PyExc_FloatingPointError |
| 609 | single: PyExc_IOError |
| 610 | single: PyExc_ImportError |
| 611 | single: PyExc_IndexError |
| 612 | single: PyExc_KeyError |
| 613 | single: PyExc_KeyboardInterrupt |
| 614 | single: PyExc_MemoryError |
| 615 | single: PyExc_NameError |
| 616 | single: PyExc_NotImplementedError |
| 617 | single: PyExc_OSError |
| 618 | single: PyExc_OverflowError |
| 619 | single: PyExc_ReferenceError |
| 620 | single: PyExc_RuntimeError |
| 621 | single: PyExc_SyntaxError |
| 622 | single: PyExc_SystemError |
| 623 | single: PyExc_SystemExit |
| 624 | single: PyExc_TypeError |
| 625 | single: PyExc_ValueError |
| 626 | single: PyExc_WindowsError |
| 627 | single: PyExc_ZeroDivisionError |
| 628 | |
| 629 | Notes: |
| 630 | |
| 631 | (1) |
| 632 | This is a base class for other standard exceptions. |
| 633 | |
| 634 | (2) |
| 635 | This is the same as :exc:`weakref.ReferenceError`. |
| 636 | |
| 637 | (3) |
| 638 | Only defined on Windows; protect code that uses this by testing that the |
| 639 | preprocessor macro ``MS_WINDOWS`` is defined. |