#include "Python.h"
#include "pycore_ast.h"
-#include "pycore_ast_state.h" // struct ast_state
-#include "pycore_interp.h" // _PyInterpreterState.ast
-#include "pycore_pystate.h" // _PyInterpreterState_GET()
+#include "pycore_ast_state.h" // struct ast_state
+#include "pycore_ceval.h" // _Py_EnterRecursiveCall
+#include "pycore_interp.h" // _PyInterpreterState.ast
+#include "pycore_pystate.h" // _PyInterpreterState_GET()
#include "structmember.h"
#include <stddef.h>
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Module' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Module' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
type_ignore_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Module' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Module' node")) {
goto failed;
}
res = obj2ast_type_ignore(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Interactive' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Interactive' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Expression' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Expression' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &body, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'FunctionType' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FunctionType' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'FunctionType' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FunctionType' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &returns, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'stmt' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'stmt' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'stmt' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'stmt' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'stmt' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'stmt' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'stmt' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'stmt' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &name, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
goto failed;
}
res = obj2ast_arguments(state, tmp, &args, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &returns, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FunctionDef' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &type_comment, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &name, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
goto failed;
}
res = obj2ast_arguments(state, tmp, &args, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &returns, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFunctionDef' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &type_comment, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &name, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
keyword_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
goto failed;
}
res = obj2ast_keyword(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ClassDef' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Return' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Return' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Delete' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Delete' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Assign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Assign' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Assign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Assign' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Assign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Assign' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &type_comment, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AugAssign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AugAssign' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &target, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AugAssign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AugAssign' node")) {
goto failed;
}
res = obj2ast_operator(state, tmp, &op, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AugAssign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AugAssign' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AnnAssign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AnnAssign' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &target, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AnnAssign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AnnAssign' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &annotation, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AnnAssign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AnnAssign' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AnnAssign' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AnnAssign' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &simple, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'For' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'For' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &target, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'For' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'For' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &iter, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'For' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'For' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'For' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'For' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'For' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'For' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &type_comment, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &target, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &iter, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncFor' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &type_comment, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'While' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'While' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &test, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'While' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'While' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'While' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'While' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'If' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'If' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &test, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'If' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'If' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'If' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'If' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
withitem_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'With' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'With' node")) {
goto failed;
}
res = obj2ast_withitem(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'With' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'With' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'With' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'With' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &type_comment, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
withitem_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'AsyncWith' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncWith' node")) {
goto failed;
}
res = obj2ast_withitem(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'AsyncWith' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncWith' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'AsyncWith' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'AsyncWith' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &type_comment, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Match' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Match' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &subject, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
match_case_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Match' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Match' node")) {
goto failed;
}
res = obj2ast_match_case(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Raise' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Raise' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &exc, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Raise' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Raise' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &cause, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Try' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Try' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
excepthandler_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Try' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Try' node")) {
goto failed;
}
res = obj2ast_excepthandler(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Try' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Try' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Try' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Try' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'TryStar' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'TryStar' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
excepthandler_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'TryStar' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'TryStar' node")) {
goto failed;
}
res = obj2ast_excepthandler(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'TryStar' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'TryStar' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'TryStar' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'TryStar' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Assert' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Assert' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &test, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Assert' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Assert' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &msg, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
alias_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Import' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Import' node")) {
goto failed;
}
res = obj2ast_alias(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'ImportFrom' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ImportFrom' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &module, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
alias_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'ImportFrom' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ImportFrom' node")) {
goto failed;
}
res = obj2ast_alias(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'ImportFrom' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ImportFrom' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &level, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
identifier val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Global' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Global' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
identifier val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Nonlocal' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Nonlocal' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Expr' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Expr' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'expr' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'expr' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'expr' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'expr' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'expr' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'expr' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'expr' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'expr' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'BoolOp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'BoolOp' node")) {
goto failed;
}
res = obj2ast_boolop(state, tmp, &op, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'BoolOp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'BoolOp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'NamedExpr' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'NamedExpr' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &target, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'NamedExpr' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'NamedExpr' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'BinOp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'BinOp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &left, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'BinOp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'BinOp' node")) {
goto failed;
}
res = obj2ast_operator(state, tmp, &op, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'BinOp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'BinOp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &right, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'UnaryOp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'UnaryOp' node")) {
goto failed;
}
res = obj2ast_unaryop(state, tmp, &op, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'UnaryOp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'UnaryOp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &operand, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Lambda' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Lambda' node")) {
goto failed;
}
res = obj2ast_arguments(state, tmp, &args, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Lambda' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Lambda' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &body, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'IfExp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'IfExp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &test, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'IfExp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'IfExp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &body, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'IfExp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'IfExp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &orelse, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Dict' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Dict' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Dict' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Dict' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Set' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Set' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'ListComp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ListComp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &elt, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
comprehension_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'ListComp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ListComp' node")) {
goto failed;
}
res = obj2ast_comprehension(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'SetComp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'SetComp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &elt, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
comprehension_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'SetComp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'SetComp' node")) {
goto failed;
}
res = obj2ast_comprehension(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'DictComp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'DictComp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &key, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'DictComp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'DictComp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
comprehension_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'DictComp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'DictComp' node")) {
goto failed;
}
res = obj2ast_comprehension(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'GeneratorExp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'GeneratorExp' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &elt, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
comprehension_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'GeneratorExp' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'GeneratorExp' node")) {
goto failed;
}
res = obj2ast_comprehension(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Await' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Await' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Yield' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Yield' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'YieldFrom' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'YieldFrom' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Compare' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Compare' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &left, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
cmpop_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Compare' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Compare' node")) {
goto failed;
}
res = obj2ast_cmpop(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Compare' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Compare' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Call' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Call' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &func, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Call' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Call' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
keyword_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Call' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Call' node")) {
goto failed;
}
res = obj2ast_keyword(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'FormattedValue' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FormattedValue' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'FormattedValue' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FormattedValue' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &conversion, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'FormattedValue' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'FormattedValue' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &format_spec, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'JoinedStr' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'JoinedStr' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Constant' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Constant' node")) {
goto failed;
}
res = obj2ast_constant(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Constant' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Constant' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &kind, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Attribute' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Attribute' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Attribute' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Attribute' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &attr, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Attribute' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Attribute' node")) {
goto failed;
}
res = obj2ast_expr_context(state, tmp, &ctx, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Subscript' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Subscript' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Subscript' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Subscript' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &slice, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Subscript' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Subscript' node")) {
goto failed;
}
res = obj2ast_expr_context(state, tmp, &ctx, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Starred' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Starred' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Starred' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Starred' node")) {
goto failed;
}
res = obj2ast_expr_context(state, tmp, &ctx, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Name' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Name' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &id, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Name' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Name' node")) {
goto failed;
}
res = obj2ast_expr_context(state, tmp, &ctx, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'List' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'List' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'List' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'List' node")) {
goto failed;
}
res = obj2ast_expr_context(state, tmp, &ctx, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'Tuple' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Tuple' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Tuple' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Tuple' node")) {
goto failed;
}
res = obj2ast_expr_context(state, tmp, &ctx, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Slice' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Slice' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &lower, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Slice' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Slice' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &upper, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'Slice' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'Slice' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &step, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'comprehension' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'comprehension' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &target, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'comprehension' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'comprehension' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &iter, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'comprehension' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'comprehension' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'comprehension' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'comprehension' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &is_async, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'excepthandler' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'excepthandler' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'excepthandler' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'excepthandler' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'excepthandler' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'excepthandler' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'excepthandler' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'excepthandler' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'ExceptHandler' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ExceptHandler' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &type, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'ExceptHandler' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ExceptHandler' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &name, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'ExceptHandler' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'ExceptHandler' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
arg_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
goto failed;
}
res = obj2ast_arg(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
arg_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
goto failed;
}
res = obj2ast_arg(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
goto failed;
}
res = obj2ast_arg(state, tmp, &vararg, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
arg_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
goto failed;
}
res = obj2ast_arg(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
goto failed;
}
res = obj2ast_arg(state, tmp, &kwarg, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arguments' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'arg' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arg' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &arg, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'arg' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arg' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &annotation, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'arg' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arg' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &type_comment, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'arg' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arg' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'arg' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arg' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'arg' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arg' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'arg' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'arg' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &arg, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'keyword' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'alias' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'alias' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &name, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'alias' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'alias' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &asname, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'alias' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'alias' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'alias' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'alias' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'alias' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'alias' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'alias' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'alias' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'withitem' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'withitem' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &context_expr, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'withitem' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'withitem' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &optional_vars, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'match_case' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'match_case' node")) {
goto failed;
}
res = obj2ast_pattern(state, tmp, &pattern, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'match_case' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'match_case' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &guard, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
stmt_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'match_case' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'match_case' node")) {
goto failed;
}
res = obj2ast_stmt(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'pattern' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'pattern' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'pattern' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'pattern' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'pattern' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'pattern' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'pattern' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'pattern' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &end_col_offset, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'MatchValue' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchValue' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'MatchSingleton' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchSingleton' node")) {
goto failed;
}
res = obj2ast_constant(state, tmp, &value, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
pattern_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'MatchSequence' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchSequence' node")) {
goto failed;
}
res = obj2ast_pattern(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
expr_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'MatchMapping' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchMapping' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
pattern_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'MatchMapping' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchMapping' node")) {
goto failed;
}
res = obj2ast_pattern(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'MatchMapping' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchMapping' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &rest, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'MatchClass' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchClass' node")) {
goto failed;
}
res = obj2ast_expr(state, tmp, &cls, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
pattern_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'MatchClass' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchClass' node")) {
goto failed;
}
res = obj2ast_pattern(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
identifier val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'MatchClass' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchClass' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
pattern_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'MatchClass' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchClass' node")) {
goto failed;
}
res = obj2ast_pattern(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'MatchStar' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchStar' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &name, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'MatchAs' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchAs' node")) {
goto failed;
}
res = obj2ast_pattern(state, tmp, &pattern, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'MatchAs' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchAs' node")) {
goto failed;
}
res = obj2ast_identifier(state, tmp, &name, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
pattern_ty val;
PyObject *tmp2 = PyList_GET_ITEM(tmp, i);
Py_INCREF(tmp2);
- if (Py_EnterRecursiveCall(" while traversing 'MatchOr' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'MatchOr' node")) {
goto failed;
}
res = obj2ast_pattern(state, tmp2, &val, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
Py_DECREF(tmp2);
if (res != 0) goto failed;
if (len != PyList_GET_SIZE(tmp)) {
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'TypeIgnore' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'TypeIgnore' node")) {
goto failed;
}
res = obj2ast_int(state, tmp, &lineno, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}
}
else {
int res;
- if (Py_EnterRecursiveCall(" while traversing 'TypeIgnore' node")) {
+ if (_Py_EnterRecursiveCall(" while traversing 'TypeIgnore' node")) {
goto failed;
}
res = obj2ast_string(state, tmp, &tag, arena);
- Py_LeaveRecursiveCall();
+ _Py_LeaveRecursiveCall();
if (res != 0) goto failed;
Py_CLEAR(tmp);
}