Lines Matching refs:mesg
231 value_error_int(const char *mesg) in value_error_int() argument
233 PyErr_SetString(PyExc_ValueError, mesg); in value_error_int()
239 value_error_ptr(const char *mesg) in value_error_ptr() argument
241 PyErr_SetString(PyExc_ValueError, mesg); in value_error_ptr()
247 type_error_int(const char *mesg) in type_error_int() argument
249 PyErr_SetString(PyExc_TypeError, mesg); in type_error_int()
254 runtime_error_int(const char *mesg) in runtime_error_int() argument
256 PyErr_SetString(PyExc_RuntimeError, mesg); in runtime_error_int()
263 runtime_error_ptr(const char *mesg) in runtime_error_ptr() argument
265 PyErr_SetString(PyExc_RuntimeError, mesg); in runtime_error_ptr()
2258 sequence_as_tuple(PyObject *v, PyObject *ex, const char *mesg) in sequence_as_tuple() argument
2268 PyErr_SetString(ex, mesg); in sequence_as_tuple()