Lines Matching refs:mesg
241 value_error_int(const char *mesg) in value_error_int() argument
243 PyErr_SetString(PyExc_ValueError, mesg); in value_error_int()
249 value_error_ptr(const char *mesg) in value_error_ptr() argument
251 PyErr_SetString(PyExc_ValueError, mesg); in value_error_ptr()
257 type_error_int(const char *mesg) in type_error_int() argument
259 PyErr_SetString(PyExc_TypeError, mesg); in type_error_int()
264 runtime_error_int(const char *mesg) in runtime_error_int() argument
266 PyErr_SetString(PyExc_RuntimeError, mesg); in runtime_error_int()
273 runtime_error_ptr(const char *mesg) in runtime_error_ptr() argument
275 PyErr_SetString(PyExc_RuntimeError, mesg); in runtime_error_ptr()
2402 sequence_as_tuple(PyObject *v, PyObject *ex, const char *mesg) in sequence_as_tuple() argument
2412 PyErr_SetString(ex, mesg); in sequence_as_tuple()