Lines Matching refs:expr
376 # define _PyObject_ASSERT_FROM(obj, expr, msg, filename, lineno, func) \
380 # define _PyObject_ASSERT_FROM(obj, expr, msg, filename, lineno, func) \
381 ((expr) \
383 : _PyObject_AssertFailed((obj), Py_STRINGIFY(expr), \
387 #define _PyObject_ASSERT_WITH_MSG(obj, expr, msg) \
388 _PyObject_ASSERT_FROM(obj, expr, msg, __FILE__, __LINE__, __func__)
389 #define _PyObject_ASSERT(obj, expr) \
390 _PyObject_ASSERT_WITH_MSG(obj, expr, NULL)
399 msg, expr and function can be NULL. */
402 const char *expr,