[3.8] bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020) by miss-islington · Pull Request #14044 · python/cpython
/* mode is 0 for "exec", 1 for "eval" and 2 for "single" input */ mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode) { return PyAST_obj2mod_ex(ast, arena, mode, PY_MINOR_VERSION); }
mod_ty PyAST_obj2mod_ex(PyObject* ast, PyArena* arena, int mode, int feature_version) { mod_ty res; PyObject *req_type[3];