From 87d3b9db4ade1aa100ee6f065082cb7e85b8992f Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 25 Mar 2020 19:27:36 +0100 Subject: bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) --- Python/ast.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'Python/ast.c') diff --git a/Python/ast.c b/Python/ast.c index 2b74ed4dbd..fb23c026e8 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -727,11 +727,8 @@ num_stmts(const node *n) return l; } default: { - char buf[128]; - - sprintf(buf, "Non-statement found: %d %d", - TYPE(n), NCH(n)); - Py_FatalError(buf); + _Py_FatalErrorFormat(__func__, "Non-statement found: %d %d", + TYPE(n), NCH(n)); } } Py_UNREACHABLE(); @@ -1664,7 +1661,7 @@ ast_for_decorator(struct compiling *c, const node *n) REQ(n, decorator); REQ(CHILD(n, 0), AT); REQ(CHILD(n, 2), NEWLINE); - + return ast_for_expr(c, CHILD(n, 1)); } -- cgit v1.2.1