Home
last modified time | relevance | path

Searched refs:_PyAST_Assert (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/internal/
Dpycore_ast.h691 stmt_ty _PyAST_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset,
/third_party/python/Grammar/
Dpython.gram131 assert_stmt[stmt_ty]: 'assert' a=expression b=[',' z=expression { z }] { _PyAST_Assert(a, b, EXTRA)…
/third_party/python/Python/
DPython-ast.c2380 _PyAST_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, int in _PyAST_Assert() function
7520 *out = _PyAST_Assert(test, msg, lineno, col_offset, end_lineno, in obj2ast_stmt()
/third_party/python/Parser/
Dparser.c3119 _res = _PyAST_Assert ( a , b , EXTRA ); in assert_stmt_rule()