reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  995   m_exception_type = m_exception = m_traceback = m_repr_bytes = NULL;
  996   PyErr_Fetch(&m_exception_type, &m_exception, &m_traceback);
  997   PyErr_NormalizeException(&m_exception_type, &m_exception, &m_traceback);
 1018   if (m_exception_type && m_exception) {
 1019     PyErr_Restore(m_exception_type, m_exception, m_traceback);
 1023   m_exception_type = m_exception = m_traceback = NULL;
 1027   Py_XDECREF(m_exception_type);
 1040   return PyErr_GivenExceptionMatches(m_exception_type, exc);
 1065       read_exception(m_exception_type, m_exception, m_traceback));