MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / __Pyx_ExceptionSwap

Function __Pyx_ExceptionSwap

_pydevd_frame_eval/pydevd_frame_evaluator.c:20176–20183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20174}
20175#else
20176static CYTHON_INLINE void __Pyx_ExceptionSwap(PyObject **type, PyObject **value, PyObject **tb) {
20177 PyObject *tmp_type, *tmp_value, *tmp_tb;
20178 PyErr_GetExcInfo(&tmp_type, &tmp_value, &tmp_tb);
20179 PyErr_SetExcInfo(*type, *value, *tb);
20180 *type = tmp_type;
20181 *value = tmp_value;
20182 *tb = tmp_tb;
20183}
20184#endif
20185
20186/* RaiseArgTupleInvalid */

Calls

no outgoing calls

Tested by

no test coverage detected