| 103 | } |
| 104 | |
| 105 | void RestorePyError() const { |
| 106 | Py_INCREF(exc_type_.obj()); |
| 107 | Py_INCREF(exc_value_.obj()); |
| 108 | Py_INCREF(exc_traceback_.obj()); |
| 109 | PyErr_Restore(exc_type_.obj(), exc_value_.obj(), exc_traceback_.obj()); |
| 110 | } |
| 111 | |
| 112 | PyObject* exc_type() const { return exc_type_.obj(); } |
| 113 |