Searched refs:BaseException_traverse (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Objects/ |
D | exceptions.c | 98 BaseException_traverse(PyBaseExceptionObject *self, visitproc visit, void *arg) in BaseException_traverse() function 404 (traverseproc)BaseException_traverse, /* tp_traverse */ 438 PyDoc_STR(EXCDOC), (traverseproc)BaseException_traverse, \ 547 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in StopIteration_traverse() 614 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SystemExit_traverse() 698 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in ImportError_traverse() 1106 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in OSError_traverse() 1376 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in NameError_traverse() 1456 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in AttributeError_traverse() 1557 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SyntaxError_traverse() [all …]
|