Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +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 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 12 | exception handling. It works somewhat like the Unix :c:data:`errno` variable: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +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 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 17 | integer (exception: the :c:func:`PyArg_\*` functions return ``1`` for success and |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +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 | .. index:: |
| 31 | single: exc_type (in module sys) |
| 32 | single: exc_value (in module sys) |
| 33 | single: exc_traceback (in module sys) |
| 34 | |
| 35 | The error indicator consists of three Python objects corresponding to the |
| 36 | Python variables ``sys.exc_type``, ``sys.exc_value`` and ``sys.exc_traceback``. |
| 37 | API functions exist to interact with the error indicator in various ways. There |
| 38 | is a separate error indicator for each thread. |
| 39 | |
Georg Brandl | b19be57 | 2007-12-29 10:57:00 +0000 | [diff] [blame] | 40 | .. XXX Order of these should be more thoughtful. |
| 41 | Either alphabetical or some kind of structure. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 42 | |
| 43 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 44 | .. c:function:: void PyErr_PrintEx(int set_sys_last_vars) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 45 | |
| 46 | Print a standard traceback to ``sys.stderr`` and clear the error indicator. |
| 47 | Call this function only when the error indicator is set. (Otherwise it will |
| 48 | cause a fatal error!) |
| 49 | |
Georg Brandl | 3ceebd2 | 2009-02-05 11:23:47 +0000 | [diff] [blame] | 50 | If *set_sys_last_vars* is nonzero, the variables :data:`sys.last_type`, |
| 51 | :data:`sys.last_value` and :data:`sys.last_traceback` will be set to the |
| 52 | type, value and traceback of the printed exception, respectively. |
| 53 | |
| 54 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 55 | .. c:function:: void PyErr_Print() |
Georg Brandl | 3ceebd2 | 2009-02-05 11:23:47 +0000 | [diff] [blame] | 56 | |
| 57 | Alias for ``PyErr_PrintEx(1)``. |
| 58 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 59 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 60 | .. c:function:: PyObject* PyErr_Occurred() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 61 | |
| 62 | Test whether the error indicator is set. If set, return the exception *type* |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 63 | (the first argument to the last call to one of the :c:func:`PyErr_Set\*` |
| 64 | functions or to :c:func:`PyErr_Restore`). If not set, return *NULL*. You do not |
| 65 | own a reference to the return value, so you do not need to :c:func:`Py_DECREF` |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 66 | it. |
| 67 | |
| 68 | .. note:: |
| 69 | |
| 70 | Do not compare the return value to a specific exception; use |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 71 | :c:func:`PyErr_ExceptionMatches` instead, shown below. (The comparison could |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 72 | easily fail since the exception may be an instance instead of a class, in the |
Benjamin Peterson | 07f9047 | 2015-01-13 09:17:24 -0500 | [diff] [blame] | 73 | case of a class exception, or it may be a subclass of the expected exception.) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 74 | |
| 75 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 76 | .. c:function:: int PyErr_ExceptionMatches(PyObject *exc) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 77 | |
| 78 | Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This |
| 79 | should only be called when an exception is actually set; a memory access |
| 80 | violation will occur if no exception has been raised. |
| 81 | |
| 82 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 83 | .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 84 | |
Benjamin Peterson | 80b5905 | 2008-12-28 21:16:07 +0000 | [diff] [blame] | 85 | Return true if the *given* exception matches the exception in *exc*. If |
| 86 | *exc* is a class object, this also returns true when *given* is an instance |
| 87 | of a subclass. If *exc* is a tuple, all exceptions in the tuple (and |
| 88 | recursively in subtuples) are searched for a match. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 89 | |
| 90 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 91 | .. c:function:: void PyErr_NormalizeException(PyObject**exc, PyObject**val, PyObject**tb) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 92 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 93 | Under certain circumstances, the values returned by :c:func:`PyErr_Fetch` below |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 94 | can be "unnormalized", meaning that ``*exc`` is a class object but ``*val`` is |
| 95 | not an instance of the same class. This function can be used to instantiate |
| 96 | the class in that case. If the values are already normalized, nothing happens. |
| 97 | The delayed normalization is implemented to improve performance. |
| 98 | |
| 99 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 100 | .. c:function:: void PyErr_Clear() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 101 | |
| 102 | Clear the error indicator. If the error indicator is not set, there is no |
| 103 | effect. |
| 104 | |
| 105 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 106 | .. c:function:: void PyErr_Fetch(PyObject **ptype, PyObject **pvalue, PyObject **ptraceback) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 107 | |
| 108 | Retrieve the error indicator into three variables whose addresses are passed. |
| 109 | If the error indicator is not set, set all three variables to *NULL*. If it is |
| 110 | set, it will be cleared and you own a reference to each object retrieved. The |
| 111 | value and traceback object may be *NULL* even when the type object is not. |
| 112 | |
| 113 | .. note:: |
| 114 | |
| 115 | This function is normally only used by code that needs to handle exceptions or |
| 116 | by code that needs to save and restore the error indicator temporarily. |
| 117 | |
| 118 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 119 | .. c:function:: void PyErr_Restore(PyObject *type, PyObject *value, PyObject *traceback) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 120 | |
| 121 | Set the error indicator from the three objects. If the error indicator is |
| 122 | already set, it is cleared first. If the objects are *NULL*, the error |
| 123 | indicator is cleared. Do not pass a *NULL* type and non-*NULL* value or |
| 124 | traceback. The exception type should be a class. Do not pass an invalid |
| 125 | exception type or value. (Violating these rules will cause subtle problems |
| 126 | later.) This call takes away a reference to each object: you must own a |
| 127 | reference to each object before the call and after the call you no longer own |
| 128 | these references. (If you don't understand this, don't use this function. I |
| 129 | warned you.) |
| 130 | |
| 131 | .. note:: |
| 132 | |
| 133 | This function is normally only used by code that needs to save and restore the |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 134 | error indicator temporarily; use :c:func:`PyErr_Fetch` to save the current |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 135 | exception state. |
| 136 | |
| 137 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 138 | .. c:function:: void PyErr_SetString(PyObject *type, const char *message) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 139 | |
| 140 | This is the most common way to set the error indicator. The first argument |
| 141 | specifies the exception type; it is normally one of the standard exceptions, |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 142 | e.g. :c:data:`PyExc_RuntimeError`. You need not increment its reference count. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 143 | The second argument is an error message; it is converted to a string object. |
| 144 | |
| 145 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 146 | .. c:function:: void PyErr_SetObject(PyObject *type, PyObject *value) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 147 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 148 | This function is similar to :c:func:`PyErr_SetString` but lets you specify an |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 149 | arbitrary Python object for the "value" of the exception. |
| 150 | |
| 151 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 152 | .. c:function:: PyObject* PyErr_Format(PyObject *exception, const char *format, ...) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 153 | |
Antoine Pitrou | a8bfed5 | 2010-11-27 21:01:36 +0000 | [diff] [blame] | 154 | This function sets the error indicator and returns *NULL*. *exception* |
| 155 | should be a Python exception class. The *format* and subsequent |
| 156 | parameters help format the error message; they have the same meaning and |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 157 | values as in :c:func:`PyString_FromFormat`. |
Mark Dickinson | 82864d1 | 2009-11-15 16:18:58 +0000 | [diff] [blame] | 158 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 159 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 160 | .. c:function:: void PyErr_SetNone(PyObject *type) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 161 | |
| 162 | This is a shorthand for ``PyErr_SetObject(type, Py_None)``. |
| 163 | |
| 164 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 165 | .. c:function:: int PyErr_BadArgument() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 166 | |
| 167 | This is a shorthand for ``PyErr_SetString(PyExc_TypeError, message)``, where |
| 168 | *message* indicates that a built-in operation was invoked with an illegal |
| 169 | argument. It is mostly for internal use. |
| 170 | |
| 171 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 172 | .. c:function:: PyObject* PyErr_NoMemory() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 173 | |
| 174 | This is a shorthand for ``PyErr_SetNone(PyExc_MemoryError)``; it returns *NULL* |
| 175 | so an object allocation function can write ``return PyErr_NoMemory();`` when it |
| 176 | runs out of memory. |
| 177 | |
| 178 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 179 | .. c:function:: PyObject* PyErr_SetFromErrno(PyObject *type) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 180 | |
| 181 | .. index:: single: strerror() |
| 182 | |
| 183 | This is a convenience function to raise an exception when a C library function |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 184 | has returned an error and set the C variable :c:data:`errno`. It constructs a |
| 185 | tuple object whose first item is the integer :c:data:`errno` value and whose |
| 186 | second item is the corresponding error message (gotten from :c:func:`strerror`), |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 187 | and then calls ``PyErr_SetObject(type, object)``. On Unix, when the |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 188 | :c:data:`errno` value is :const:`EINTR`, indicating an interrupted system call, |
| 189 | this calls :c:func:`PyErr_CheckSignals`, and if that set the error indicator, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 190 | leaves it set to that. The function always returns *NULL*, so a wrapper |
| 191 | function around a system call can write ``return PyErr_SetFromErrno(type);`` |
| 192 | when the system call returns an error. |
| 193 | |
| 194 | |
Georg Brandl | ba58cbe | 2013-04-14 11:12:16 +0200 | [diff] [blame] | 195 | .. c:function:: PyObject* PyErr_SetFromErrnoWithFilenameObject(PyObject *type, PyObject *filenameObject) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 196 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 197 | Similar to :c:func:`PyErr_SetFromErrno`, with the additional behavior that if |
Georg Brandl | ba58cbe | 2013-04-14 11:12:16 +0200 | [diff] [blame] | 198 | *filenameObject* is not *NULL*, it is passed to the constructor of *type* as |
| 199 | a third parameter. In the case of exceptions such as :exc:`IOError` and |
| 200 | :exc:`OSError`, this is used to define the :attr:`filename` attribute of the |
| 201 | exception instance. |
| 202 | |
| 203 | |
| 204 | .. c:function:: PyObject* PyErr_SetFromErrnoWithFilename(PyObject *type, const char *filename) |
| 205 | |
| 206 | Similar to :c:func:`PyErr_SetFromErrnoWithFilenameObject`, but the filename |
| 207 | is given as a C string. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 208 | |
| 209 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 210 | .. c:function:: PyObject* PyErr_SetFromWindowsErr(int ierr) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 211 | |
| 212 | This is a convenience function to raise :exc:`WindowsError`. If called with |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 213 | *ierr* of :c:data:`0`, the error code returned by a call to :c:func:`GetLastError` |
| 214 | is used instead. It calls the Win32 function :c:func:`FormatMessage` to retrieve |
| 215 | the Windows description of error code given by *ierr* or :c:func:`GetLastError`, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 216 | then it constructs a tuple object whose first item is the *ierr* value and whose |
| 217 | second item is the corresponding error message (gotten from |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 218 | :c:func:`FormatMessage`), and then calls ``PyErr_SetObject(PyExc_WindowsError, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 219 | object)``. This function always returns *NULL*. Availability: Windows. |
| 220 | |
| 221 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 222 | .. c:function:: PyObject* PyErr_SetExcFromWindowsErr(PyObject *type, int ierr) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 223 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 224 | Similar to :c:func:`PyErr_SetFromWindowsErr`, with an additional parameter |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 225 | specifying the exception type to be raised. Availability: Windows. |
| 226 | |
| 227 | .. versionadded:: 2.3 |
| 228 | |
| 229 | |
Georg Brandl | ba58cbe | 2013-04-14 11:12:16 +0200 | [diff] [blame] | 230 | .. c:function:: PyObject* PyErr_SetFromWindowsErrWithFilenameObject(int ierr, PyObject *filenameObject) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 231 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 232 | Similar to :c:func:`PyErr_SetFromWindowsErr`, with the additional behavior that |
Georg Brandl | ba58cbe | 2013-04-14 11:12:16 +0200 | [diff] [blame] | 233 | if *filenameObject* is not *NULL*, it is passed to the constructor of |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 234 | :exc:`WindowsError` as a third parameter. Availability: Windows. |
| 235 | |
| 236 | |
Georg Brandl | ba58cbe | 2013-04-14 11:12:16 +0200 | [diff] [blame] | 237 | .. c:function:: PyObject* PyErr_SetFromWindowsErrWithFilename(int ierr, const char *filename) |
| 238 | |
| 239 | Similar to :c:func:`PyErr_SetFromWindowsErrWithFilenameObject`, but the |
| 240 | filename is given as a C string. Availability: Windows. |
| 241 | |
| 242 | |
| 243 | .. c:function:: PyObject* PyErr_SetExcFromWindowsErrWithFilenameObject(PyObject *type, int ierr, PyObject *filename) |
| 244 | |
| 245 | Similar to :c:func:`PyErr_SetFromWindowsErrWithFilenameObject`, with an |
| 246 | additional parameter specifying the exception type to be raised. |
| 247 | Availability: Windows. |
| 248 | |
| 249 | .. versionadded:: 2.3 |
| 250 | |
| 251 | |
| 252 | .. c:function:: PyObject* PyErr_SetExcFromWindowsErrWithFilename(PyObject *type, int ierr, const char *filename) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 253 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 254 | Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 255 | parameter specifying the exception type to be raised. Availability: Windows. |
| 256 | |
| 257 | .. versionadded:: 2.3 |
| 258 | |
| 259 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 260 | .. c:function:: void PyErr_BadInternalCall() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 261 | |
Benjamin Peterson | 0ef803f | 2009-01-31 16:52:03 +0000 | [diff] [blame] | 262 | This is a shorthand for ``PyErr_SetString(PyExc_SystemError, message)``, |
| 263 | where *message* indicates that an internal operation (e.g. a Python/C API |
| 264 | function) was invoked with an illegal argument. It is mostly for internal |
| 265 | use. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 266 | |
| 267 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 268 | .. c:function:: int PyErr_WarnEx(PyObject *category, char *message, int stacklevel) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 269 | |
| 270 | Issue a warning message. The *category* argument is a warning category (see |
| 271 | below) or *NULL*; the *message* argument is a message string. *stacklevel* is a |
| 272 | positive number giving a number of stack frames; the warning will be issued from |
| 273 | the currently executing line of code in that stack frame. A *stacklevel* of 1 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 274 | is the function calling :c:func:`PyErr_WarnEx`, 2 is the function above that, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 275 | and so forth. |
| 276 | |
| 277 | This function normally prints a warning message to *sys.stderr*; however, it is |
| 278 | also possible that the user has specified that warnings are to be turned into |
| 279 | errors, and in that case this will raise an exception. It is also possible that |
| 280 | the function raises an exception because of a problem with the warning machinery |
| 281 | (the implementation imports the :mod:`warnings` module to do the heavy lifting). |
| 282 | The return value is ``0`` if no exception is raised, or ``-1`` if an exception |
| 283 | is raised. (It is not possible to determine whether a warning message is |
| 284 | actually printed, nor what the reason is for the exception; this is |
| 285 | intentional.) If an exception is raised, the caller should do its normal |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 286 | exception handling (for example, :c:func:`Py_DECREF` owned references and return |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 287 | an error value). |
| 288 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 289 | Warning categories must be subclasses of :c:data:`Warning`; the default warning |
| 290 | category is :c:data:`RuntimeWarning`. The standard Python warning categories are |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 291 | available as global variables whose names are ``PyExc_`` followed by the Python |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 292 | exception name. These have the type :c:type:`PyObject\*`; they are all class |
| 293 | objects. Their names are :c:data:`PyExc_Warning`, :c:data:`PyExc_UserWarning`, |
| 294 | :c:data:`PyExc_UnicodeWarning`, :c:data:`PyExc_DeprecationWarning`, |
| 295 | :c:data:`PyExc_SyntaxWarning`, :c:data:`PyExc_RuntimeWarning`, and |
| 296 | :c:data:`PyExc_FutureWarning`. :c:data:`PyExc_Warning` is a subclass of |
| 297 | :c:data:`PyExc_Exception`; the other warning categories are subclasses of |
| 298 | :c:data:`PyExc_Warning`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 299 | |
| 300 | For information about warning control, see the documentation for the |
| 301 | :mod:`warnings` module and the :option:`-W` option in the command line |
| 302 | documentation. There is no C API for warning control. |
| 303 | |
| 304 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 305 | .. c:function:: int PyErr_Warn(PyObject *category, char *message) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 306 | |
| 307 | Issue a warning message. The *category* argument is a warning category (see |
| 308 | below) or *NULL*; the *message* argument is a message string. The warning will |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 309 | appear to be issued from the function calling :c:func:`PyErr_Warn`, equivalent to |
| 310 | calling :c:func:`PyErr_WarnEx` with a *stacklevel* of 1. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 311 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 312 | Deprecated; use :c:func:`PyErr_WarnEx` instead. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 313 | |
| 314 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 315 | .. c:function:: int PyErr_WarnExplicit(PyObject *category, const char *message, const char *filename, int lineno, const char *module, PyObject *registry) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 316 | |
| 317 | Issue a warning message with explicit control over all warning attributes. This |
| 318 | is a straightforward wrapper around the Python function |
| 319 | :func:`warnings.warn_explicit`, see there for more information. The *module* |
| 320 | and *registry* arguments may be set to *NULL* to get the default effect |
| 321 | described there. |
| 322 | |
| 323 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 324 | .. c:function:: int PyErr_WarnPy3k(char *message, int stacklevel) |
Benjamin Peterson | a692c4d | 2008-04-27 02:28:02 +0000 | [diff] [blame] | 325 | |
| 326 | Issue a :exc:`DeprecationWarning` with the given *message* and *stacklevel* |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 327 | if the :c:data:`Py_Py3kWarningFlag` flag is enabled. |
Benjamin Peterson | a692c4d | 2008-04-27 02:28:02 +0000 | [diff] [blame] | 328 | |
| 329 | .. versionadded:: 2.6 |
| 330 | |
| 331 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 332 | .. c:function:: int PyErr_CheckSignals() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 333 | |
| 334 | .. index:: |
| 335 | module: signal |
| 336 | single: SIGINT |
| 337 | single: KeyboardInterrupt (built-in exception) |
| 338 | |
| 339 | This function interacts with Python's signal handling. It checks whether a |
| 340 | signal has been sent to the processes and if so, invokes the corresponding |
| 341 | signal handler. If the :mod:`signal` module is supported, this can invoke a |
| 342 | signal handler written in Python. In all cases, the default effect for |
| 343 | :const:`SIGINT` is to raise the :exc:`KeyboardInterrupt` exception. If an |
| 344 | exception is raised the error indicator is set and the function returns ``-1``; |
| 345 | otherwise the function returns ``0``. The error indicator may or may not be |
| 346 | cleared if it was previously set. |
| 347 | |
| 348 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 349 | .. c:function:: void PyErr_SetInterrupt() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 350 | |
| 351 | .. index:: |
| 352 | single: SIGINT |
| 353 | single: KeyboardInterrupt (built-in exception) |
| 354 | |
| 355 | This function simulates the effect of a :const:`SIGINT` signal arriving --- the |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 356 | next time :c:func:`PyErr_CheckSignals` is called, :exc:`KeyboardInterrupt` will |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 357 | be raised. It may be called without holding the interpreter lock. |
| 358 | |
| 359 | .. % XXX This was described as obsolete, but is used in |
| 360 | .. % thread.interrupt_main() (used from IDLE), so it's still needed. |
| 361 | |
| 362 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 363 | .. c:function:: int PySignal_SetWakeupFd(int fd) |
Guido van Rossum | 02de897 | 2007-12-19 19:41:06 +0000 | [diff] [blame] | 364 | |
| 365 | This utility function specifies a file descriptor to which a ``'\0'`` byte will |
| 366 | be written whenever a signal is received. It returns the previous such file |
| 367 | descriptor. The value ``-1`` disables the feature; this is the initial state. |
| 368 | This is equivalent to :func:`signal.set_wakeup_fd` in Python, but without any |
| 369 | error checking. *fd* should be a valid file descriptor. The function should |
| 370 | only be called from the main thread. |
| 371 | |
Victor Stinner | 059061a | 2011-04-18 16:34:31 +0200 | [diff] [blame] | 372 | .. versionadded:: 2.6 |
| 373 | |
Guido van Rossum | 02de897 | 2007-12-19 19:41:06 +0000 | [diff] [blame] | 374 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 375 | .. c:function:: PyObject* PyErr_NewException(char *name, PyObject *base, PyObject *dict) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 376 | |
Georg Brandl | fbe84d9 | 2011-07-13 15:59:24 +0200 | [diff] [blame] | 377 | This utility function creates and returns a new exception class. The *name* |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 378 | argument must be the name of the new exception, a C string of the form |
Georg Brandl | fbe84d9 | 2011-07-13 15:59:24 +0200 | [diff] [blame] | 379 | ``module.classname``. The *base* and *dict* arguments are normally *NULL*. |
| 380 | This creates a class object derived from :exc:`Exception` (accessible in C as |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 381 | :c:data:`PyExc_Exception`). |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 382 | |
| 383 | The :attr:`__module__` attribute of the new class is set to the first part (up |
| 384 | to the last dot) of the *name* argument, and the class name is set to the last |
| 385 | part (after the last dot). The *base* argument can be used to specify alternate |
| 386 | base classes; it can either be only one class or a tuple of classes. The *dict* |
| 387 | argument can be used to specify a dictionary of class variables and methods. |
| 388 | |
| 389 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 390 | .. c:function:: PyObject* PyErr_NewExceptionWithDoc(char *name, char *doc, PyObject *base, PyObject *dict) |
Georg Brandl | 740cdc3 | 2009-12-28 08:34:58 +0000 | [diff] [blame] | 391 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 392 | Same as :c:func:`PyErr_NewException`, except that the new exception class can |
Georg Brandl | 740cdc3 | 2009-12-28 08:34:58 +0000 | [diff] [blame] | 393 | easily be given a docstring: If *doc* is non-*NULL*, it will be used as the |
| 394 | docstring for the exception class. |
| 395 | |
| 396 | .. versionadded:: 2.7 |
| 397 | |
| 398 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 399 | .. c:function:: void PyErr_WriteUnraisable(PyObject *obj) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 400 | |
| 401 | This utility function prints a warning message to ``sys.stderr`` when an |
| 402 | exception has been set but it is impossible for the interpreter to actually |
| 403 | raise the exception. It is used, for example, when an exception occurs in an |
| 404 | :meth:`__del__` method. |
| 405 | |
| 406 | The function is called with a single argument *obj* that identifies the context |
Martin Panter | ef85a1a | 2016-02-28 00:18:43 +0000 | [diff] [blame] | 407 | in which the unraisable exception occurred. If possible, |
| 408 | the repr of *obj* will be printed in the warning message. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 409 | |
| 410 | |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 411 | .. _unicodeexceptions: |
| 412 | |
| 413 | Unicode Exception Objects |
| 414 | ========================= |
| 415 | |
| 416 | The following functions are used to create and modify Unicode exceptions from C. |
| 417 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 418 | .. 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) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 419 | |
| 420 | Create a :class:`UnicodeDecodeError` object with the attributes *encoding*, |
| 421 | *object*, *length*, *start*, *end* and *reason*. |
| 422 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 423 | .. 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) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 424 | |
| 425 | Create a :class:`UnicodeEncodeError` object with the attributes *encoding*, |
| 426 | *object*, *length*, *start*, *end* and *reason*. |
| 427 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 428 | .. c:function:: PyObject* PyUnicodeTranslateError_Create(const Py_UNICODE *object, Py_ssize_t length, Py_ssize_t start, Py_ssize_t end, const char *reason) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 429 | |
| 430 | Create a :class:`UnicodeTranslateError` object with the attributes *object*, |
| 431 | *length*, *start*, *end* and *reason*. |
| 432 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 433 | .. c:function:: PyObject* PyUnicodeDecodeError_GetEncoding(PyObject *exc) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 434 | PyObject* PyUnicodeEncodeError_GetEncoding(PyObject *exc) |
| 435 | |
| 436 | Return the *encoding* attribute of the given exception object. |
| 437 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 438 | .. c:function:: PyObject* PyUnicodeDecodeError_GetObject(PyObject *exc) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 439 | PyObject* PyUnicodeEncodeError_GetObject(PyObject *exc) |
| 440 | PyObject* PyUnicodeTranslateError_GetObject(PyObject *exc) |
| 441 | |
| 442 | Return the *object* attribute of the given exception object. |
| 443 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 444 | .. c:function:: int PyUnicodeDecodeError_GetStart(PyObject *exc, Py_ssize_t *start) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 445 | int PyUnicodeEncodeError_GetStart(PyObject *exc, Py_ssize_t *start) |
| 446 | int PyUnicodeTranslateError_GetStart(PyObject *exc, Py_ssize_t *start) |
| 447 | |
| 448 | Get the *start* attribute of the given exception object and place it into |
| 449 | *\*start*. *start* must not be *NULL*. Return ``0`` on success, ``-1`` on |
| 450 | failure. |
| 451 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 452 | .. c:function:: int PyUnicodeDecodeError_SetStart(PyObject *exc, Py_ssize_t start) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 453 | int PyUnicodeEncodeError_SetStart(PyObject *exc, Py_ssize_t start) |
| 454 | int PyUnicodeTranslateError_SetStart(PyObject *exc, Py_ssize_t start) |
| 455 | |
| 456 | Set the *start* attribute of the given exception object to *start*. Return |
| 457 | ``0`` on success, ``-1`` on failure. |
| 458 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 459 | .. c:function:: int PyUnicodeDecodeError_GetEnd(PyObject *exc, Py_ssize_t *end) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 460 | int PyUnicodeEncodeError_GetEnd(PyObject *exc, Py_ssize_t *end) |
| 461 | int PyUnicodeTranslateError_GetEnd(PyObject *exc, Py_ssize_t *end) |
| 462 | |
| 463 | Get the *end* attribute of the given exception object and place it into |
| 464 | *\*end*. *end* must not be *NULL*. Return ``0`` on success, ``-1`` on |
| 465 | failure. |
| 466 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 467 | .. c:function:: int PyUnicodeDecodeError_SetEnd(PyObject *exc, Py_ssize_t end) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 468 | int PyUnicodeEncodeError_SetEnd(PyObject *exc, Py_ssize_t end) |
| 469 | int PyUnicodeTranslateError_SetEnd(PyObject *exc, Py_ssize_t end) |
| 470 | |
| 471 | Set the *end* attribute of the given exception object to *end*. Return ``0`` |
| 472 | on success, ``-1`` on failure. |
| 473 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 474 | .. c:function:: PyObject* PyUnicodeDecodeError_GetReason(PyObject *exc) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 475 | PyObject* PyUnicodeEncodeError_GetReason(PyObject *exc) |
| 476 | PyObject* PyUnicodeTranslateError_GetReason(PyObject *exc) |
| 477 | |
| 478 | Return the *reason* attribute of the given exception object. |
| 479 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 480 | .. c:function:: int PyUnicodeDecodeError_SetReason(PyObject *exc, const char *reason) |
Georg Brandl | b727650 | 2010-11-26 08:28:05 +0000 | [diff] [blame] | 481 | int PyUnicodeEncodeError_SetReason(PyObject *exc, const char *reason) |
| 482 | int PyUnicodeTranslateError_SetReason(PyObject *exc, const char *reason) |
| 483 | |
| 484 | Set the *reason* attribute of the given exception object to *reason*. Return |
| 485 | ``0`` on success, ``-1`` on failure. |
| 486 | |
| 487 | |
Georg Brandl | 0d4bfec | 2010-03-07 21:32:06 +0000 | [diff] [blame] | 488 | Recursion Control |
| 489 | ================= |
| 490 | |
| 491 | These two functions provide a way to perform safe recursive calls at the C |
| 492 | level, both in the core and in extension modules. They are needed if the |
| 493 | recursive code does not necessarily invoke Python code (which tracks its |
| 494 | recursion depth automatically). |
| 495 | |
Serhiy Storchaka | 1670af6 | 2015-06-21 16:26:28 +0300 | [diff] [blame] | 496 | .. c:function:: int Py_EnterRecursiveCall(const char *where) |
Georg Brandl | 0d4bfec | 2010-03-07 21:32:06 +0000 | [diff] [blame] | 497 | |
| 498 | Marks a point where a recursive C-level call is about to be performed. |
| 499 | |
Ezio Melotti | 1e87da1 | 2011-10-19 10:39:35 +0300 | [diff] [blame] | 500 | If :const:`USE_STACKCHECK` is defined, this function checks if the OS |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 501 | stack overflowed using :c:func:`PyOS_CheckStack`. In this is the case, it |
Georg Brandl | 0d4bfec | 2010-03-07 21:32:06 +0000 | [diff] [blame] | 502 | sets a :exc:`MemoryError` and returns a nonzero value. |
| 503 | |
| 504 | The function then checks if the recursion limit is reached. If this is the |
| 505 | case, a :exc:`RuntimeError` is set and a nonzero value is returned. |
| 506 | Otherwise, zero is returned. |
| 507 | |
| 508 | *where* should be a string such as ``" in instance check"`` to be |
| 509 | concatenated to the :exc:`RuntimeError` message caused by the recursion depth |
| 510 | limit. |
| 511 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 512 | .. c:function:: void Py_LeaveRecursiveCall() |
Georg Brandl | 0d4bfec | 2010-03-07 21:32:06 +0000 | [diff] [blame] | 513 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 514 | Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each |
| 515 | *successful* invocation of :c:func:`Py_EnterRecursiveCall`. |
Georg Brandl | 0d4bfec | 2010-03-07 21:32:06 +0000 | [diff] [blame] | 516 | |
| 517 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 518 | .. _standardexceptions: |
| 519 | |
| 520 | Standard Exceptions |
| 521 | =================== |
| 522 | |
| 523 | All standard Python exceptions are available as global variables whose names are |
| 524 | ``PyExc_`` followed by the Python exception name. These have the type |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 525 | :c:type:`PyObject\*`; they are all class objects. For completeness, here are all |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 526 | the variables: |
| 527 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 528 | .. index:: |
| 529 | single: PyExc_BaseException |
| 530 | single: PyExc_Exception |
| 531 | single: PyExc_StandardError |
| 532 | single: PyExc_ArithmeticError |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 533 | single: PyExc_AssertionError |
| 534 | single: PyExc_AttributeError |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 535 | single: PyExc_BufferError |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 536 | single: PyExc_EnvironmentError |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 537 | single: PyExc_EOFError |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 538 | single: PyExc_FloatingPointError |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 539 | single: PyExc_GeneratorExit |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 540 | single: PyExc_ImportError |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 541 | single: PyExc_IndentationError |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 542 | single: PyExc_IndexError |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 543 | single: PyExc_IOError |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 544 | single: PyExc_KeyError |
| 545 | single: PyExc_KeyboardInterrupt |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 546 | single: PyExc_LookupError |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 547 | single: PyExc_MemoryError |
| 548 | single: PyExc_NameError |
| 549 | single: PyExc_NotImplementedError |
| 550 | single: PyExc_OSError |
| 551 | single: PyExc_OverflowError |
| 552 | single: PyExc_ReferenceError |
| 553 | single: PyExc_RuntimeError |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 554 | single: PyExc_StopIteration |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 555 | single: PyExc_SyntaxError |
| 556 | single: PyExc_SystemError |
| 557 | single: PyExc_SystemExit |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 558 | single: PyExc_TabError |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 559 | single: PyExc_TypeError |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 560 | single: PyExc_UnboundLocalError |
| 561 | single: PyExc_UnicodeDecodeError |
| 562 | single: PyExc_UnicodeEncodeError |
| 563 | single: PyExc_UnicodeError |
| 564 | single: PyExc_UnicodeTranslateError |
| 565 | single: PyExc_VMSError |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 566 | single: PyExc_ValueError |
| 567 | single: PyExc_WindowsError |
| 568 | single: PyExc_ZeroDivisionError |
| 569 | |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 570 | +-----------------------------------------+---------------------------------+----------+ |
| 571 | | C Name | Python Name | Notes | |
| 572 | +=========================================+=================================+==========+ |
| 573 | | :c:data:`PyExc_BaseException` | :exc:`BaseException` | (1), (4) | |
| 574 | +-----------------------------------------+---------------------------------+----------+ |
| 575 | | :c:data:`PyExc_Exception` | :exc:`Exception` | \(1) | |
| 576 | +-----------------------------------------+---------------------------------+----------+ |
| 577 | | :c:data:`PyExc_StandardError` | :exc:`StandardError` | \(1) | |
| 578 | +-----------------------------------------+---------------------------------+----------+ |
| 579 | | :c:data:`PyExc_ArithmeticError` | :exc:`ArithmeticError` | \(1) | |
| 580 | +-----------------------------------------+---------------------------------+----------+ |
| 581 | | :c:data:`PyExc_AssertionError` | :exc:`AssertionError` | | |
| 582 | +-----------------------------------------+---------------------------------+----------+ |
| 583 | | :c:data:`PyExc_AttributeError` | :exc:`AttributeError` | | |
| 584 | +-----------------------------------------+---------------------------------+----------+ |
| 585 | | :c:data:`PyExc_BufferError` | :exc:`BufferError` | | |
| 586 | +-----------------------------------------+---------------------------------+----------+ |
| 587 | | :c:data:`PyExc_EnvironmentError` | :exc:`EnvironmentError` | \(1) | |
| 588 | +-----------------------------------------+---------------------------------+----------+ |
| 589 | | :c:data:`PyExc_EOFError` | :exc:`EOFError` | | |
| 590 | +-----------------------------------------+---------------------------------+----------+ |
| 591 | | :c:data:`PyExc_FloatingPointError` | :exc:`FloatingPointError` | | |
| 592 | +-----------------------------------------+---------------------------------+----------+ |
| 593 | | :c:data:`PyExc_GeneratorExit` | :exc:`GeneratorExit` | | |
| 594 | +-----------------------------------------+---------------------------------+----------+ |
| 595 | | :c:data:`PyExc_ImportError` | :exc:`ImportError` | | |
| 596 | +-----------------------------------------+---------------------------------+----------+ |
| 597 | | :c:data:`PyExc_IndentationError` | :exc:`IndentationError` | | |
| 598 | +-----------------------------------------+---------------------------------+----------+ |
| 599 | | :c:data:`PyExc_IndexError` | :exc:`IndexError` | | |
| 600 | +-----------------------------------------+---------------------------------+----------+ |
| 601 | | :c:data:`PyExc_IOError` | :exc:`IOError` | | |
| 602 | +-----------------------------------------+---------------------------------+----------+ |
| 603 | | :c:data:`PyExc_KeyError` | :exc:`KeyError` | | |
| 604 | +-----------------------------------------+---------------------------------+----------+ |
| 605 | | :c:data:`PyExc_KeyboardInterrupt` | :exc:`KeyboardInterrupt` | | |
| 606 | +-----------------------------------------+---------------------------------+----------+ |
| 607 | | :c:data:`PyExc_LookupError` | :exc:`LookupError` | \(1) | |
| 608 | +-----------------------------------------+---------------------------------+----------+ |
| 609 | | :c:data:`PyExc_MemoryError` | :exc:`MemoryError` | | |
| 610 | +-----------------------------------------+---------------------------------+----------+ |
| 611 | | :c:data:`PyExc_NameError` | :exc:`NameError` | | |
| 612 | +-----------------------------------------+---------------------------------+----------+ |
| 613 | | :c:data:`PyExc_NotImplementedError` | :exc:`NotImplementedError` | | |
| 614 | +-----------------------------------------+---------------------------------+----------+ |
| 615 | | :c:data:`PyExc_OSError` | :exc:`OSError` | | |
| 616 | +-----------------------------------------+---------------------------------+----------+ |
| 617 | | :c:data:`PyExc_OverflowError` | :exc:`OverflowError` | | |
| 618 | +-----------------------------------------+---------------------------------+----------+ |
| 619 | | :c:data:`PyExc_ReferenceError` | :exc:`ReferenceError` | \(2) | |
| 620 | +-----------------------------------------+---------------------------------+----------+ |
| 621 | | :c:data:`PyExc_RuntimeError` | :exc:`RuntimeError` | | |
| 622 | +-----------------------------------------+---------------------------------+----------+ |
| 623 | | :c:data:`PyExc_StopIteration` | :exc:`StopIteration` | | |
| 624 | +-----------------------------------------+---------------------------------+----------+ |
| 625 | | :c:data:`PyExc_SyntaxError` | :exc:`SyntaxError` | | |
| 626 | +-----------------------------------------+---------------------------------+----------+ |
| 627 | | :c:data:`PyExc_SystemError` | :exc:`SystemError` | | |
| 628 | +-----------------------------------------+---------------------------------+----------+ |
| 629 | | :c:data:`PyExc_SystemExit` | :exc:`SystemExit` | | |
| 630 | +-----------------------------------------+---------------------------------+----------+ |
| 631 | | :c:data:`PyExc_TabError` | :exc:`TabError` | | |
| 632 | +-----------------------------------------+---------------------------------+----------+ |
| 633 | | :c:data:`PyExc_TypeError` | :exc:`TypeError` | | |
| 634 | +-----------------------------------------+---------------------------------+----------+ |
| 635 | | :c:data:`PyExc_UnboundLocalError` | :exc:`UnboundLocalError` | | |
| 636 | +-----------------------------------------+---------------------------------+----------+ |
| 637 | | :c:data:`PyExc_UnicodeDecodeError` | :exc:`UnicodeDecodeError` | | |
| 638 | +-----------------------------------------+---------------------------------+----------+ |
| 639 | | :c:data:`PyExc_UnicodeEncodeError` | :exc:`UnicodeEncodeError` | | |
| 640 | +-----------------------------------------+---------------------------------+----------+ |
| 641 | | :c:data:`PyExc_UnicodeError` | :exc:`UnicodeError` | | |
| 642 | +-----------------------------------------+---------------------------------+----------+ |
| 643 | | :c:data:`PyExc_UnicodeTranslateError` | :exc:`UnicodeTranslateError` | | |
| 644 | +-----------------------------------------+---------------------------------+----------+ |
| 645 | | :c:data:`PyExc_VMSError` | :exc:`VMSError` | \(5) | |
| 646 | +-----------------------------------------+---------------------------------+----------+ |
| 647 | | :c:data:`PyExc_ValueError` | :exc:`ValueError` | | |
| 648 | +-----------------------------------------+---------------------------------+----------+ |
| 649 | | :c:data:`PyExc_WindowsError` | :exc:`WindowsError` | \(3) | |
| 650 | +-----------------------------------------+---------------------------------+----------+ |
| 651 | | :c:data:`PyExc_ZeroDivisionError` | :exc:`ZeroDivisionError` | | |
| 652 | +-----------------------------------------+---------------------------------+----------+ |
| 653 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 654 | Notes: |
| 655 | |
| 656 | (1) |
| 657 | This is a base class for other standard exceptions. |
| 658 | |
| 659 | (2) |
| 660 | This is the same as :exc:`weakref.ReferenceError`. |
| 661 | |
| 662 | (3) |
| 663 | Only defined on Windows; protect code that uses this by testing that the |
| 664 | preprocessor macro ``MS_WINDOWS`` is defined. |
| 665 | |
| 666 | (4) |
| 667 | .. versionadded:: 2.5 |
| 668 | |
cocoatomo | 7f85947 | 2017-04-08 15:19:24 +0900 | [diff] [blame^] | 669 | (5) |
| 670 | Only defined on VMS; protect code that uses this by testing that the |
| 671 | preprocessor macro ``__VMS`` is defined. |
| 672 | |
| 673 | Standard Warnings |
| 674 | ================= |
| 675 | |
| 676 | All standard Python warning categories are available as global variables whose |
| 677 | names are ``PyExc_`` followed by the Python exception name. These have the type |
| 678 | :c:type:`PyObject\*`; they are all class objects. For completeness, here are all |
| 679 | the variables: |
| 680 | |
| 681 | .. index:: |
| 682 | single: PyExc_Warning |
| 683 | single: PyExc_BytesWarning |
| 684 | single: PyExc_DepricationWarning |
| 685 | single: PyExc_FutureWarning |
| 686 | single: PyExc_ImportWarning |
| 687 | single: PyExc_PendingDeprecationWarning |
| 688 | single: PyExc_RuntimeWarning |
| 689 | single: PyExc_SyntaxWarning |
| 690 | single: PyExc_UnicodeWarning |
| 691 | single: PyExc_UserWarning |
| 692 | |
| 693 | +------------------------------------------+---------------------------------+----------+ |
| 694 | | C Name | Python Name | Notes | |
| 695 | +==========================================+=================================+==========+ |
| 696 | | :c:data:`PyExc_Warning` | :exc:`Warning` | \(1) | |
| 697 | +------------------------------------------+---------------------------------+----------+ |
| 698 | | :c:data:`PyExc_BytesWarning` | :exc:`BytesWarning` | | |
| 699 | +------------------------------------------+---------------------------------+----------+ |
| 700 | | :c:data:`PyExc_DeprecationWarning` | :exc:`DeprecationWarning` | | |
| 701 | +------------------------------------------+---------------------------------+----------+ |
| 702 | | :c:data:`PyExc_FutureWarning` | :exc:`FutureWarning` | | |
| 703 | +------------------------------------------+---------------------------------+----------+ |
| 704 | | :c:data:`PyExc_ImportWarning` | :exc:`ImportWarning` | | |
| 705 | +------------------------------------------+---------------------------------+----------+ |
| 706 | | :c:data:`PyExc_PendingDepricationWarning`| :exc:`PendingDeprecationWarning`| | |
| 707 | +------------------------------------------+---------------------------------+----------+ |
| 708 | | :c:data:`PyExc_RuntimeWarning` | :exc:`RuntimeWarning` | | |
| 709 | +------------------------------------------+---------------------------------+----------+ |
| 710 | | :c:data:`PyExc_SyntaxWarning` | :exc:`SyntaxWarning` | | |
| 711 | +------------------------------------------+---------------------------------+----------+ |
| 712 | | :c:data:`PyExc_UnicodeWarning` | :exc:`UnicodeWarning` | | |
| 713 | +------------------------------------------+---------------------------------+----------+ |
| 714 | | :c:data:`PyExc_UserWarning` | :exc:`UserWarning` | | |
| 715 | +------------------------------------------+---------------------------------+----------+ |
| 716 | |
| 717 | Notes: |
| 718 | |
| 719 | (1) |
| 720 | This is a base class for other standard warning categories. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 721 | |
Georg Brandl | 2682661 | 2011-02-25 11:19:59 +0000 | [diff] [blame] | 722 | String Exceptions |
| 723 | ================= |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 724 | |
Georg Brandl | 2682661 | 2011-02-25 11:19:59 +0000 | [diff] [blame] | 725 | .. versionchanged:: 2.6 |
| 726 | All exceptions to be raised or caught must be derived from :exc:`BaseException`. |
| 727 | Trying to raise a string exception now raises :exc:`TypeError`. |