diff options
| author | Victor Stinner <vstinner@redhat.com> | 2019-06-13 09:18:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-13 09:18:45 +0200 |
| commit | 022ac0a497b668d8b15e34e582a6396ead1a35e1 (patch) | |
| tree | c8d9b4e5f61a09cecda8f68083a6c12c24ad8fe2 | |
| parent | 8725c83ed5ca8959195ad8326db99d564a921749 (diff) | |
| download | cpython-git-022ac0a497b668d8b15e34e582a6396ead1a35e1.tar.gz | |
bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020)
PyAST_obj2mod_ex() is similar to PyAST_obj2mod() with an additional
'feature_version' parameter which is unused.
| -rw-r--r-- | Include/Python-ast.h | 1 | ||||
| -rw-r--r-- | Parser/asdl_c.py | 6 | ||||
| -rw-r--r-- | Python/Python-ast.c | 5 |
3 files changed, 0 insertions, 12 deletions
diff --git a/Include/Python-ast.h b/Include/Python-ast.h index 490d3b0846..6262650340 100644 --- a/Include/Python-ast.h +++ b/Include/Python-ast.h @@ -707,7 +707,6 @@ type_ignore_ty _Py_TypeIgnore(int lineno, string tag, PyArena *arena); PyObject* PyAST_mod2obj(mod_ty t); mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode); -mod_ty PyAST_obj2mod_ex(PyObject* ast, PyArena* arena, int mode, int feature_version); int PyAST_Check(PyObject* obj); #ifdef __cplusplus diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index 582c6ca57b..f4fa271b65 100644 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -1191,11 +1191,6 @@ PyObject* PyAST_mod2obj(mod_ty t) /* 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]; char *req_name[] = {"Module", "Expression", "Interactive"}; @@ -1280,7 +1275,6 @@ def main(srcfile, dump_module=False): f.write("\n") f.write("PyObject* PyAST_mod2obj(mod_ty t);\n") f.write("mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);\n") - f.write("mod_ty PyAST_obj2mod_ex(PyObject* ast, PyArena* arena, int mode, int feature_version);\n") f.write("int PyAST_Check(PyObject* obj);\n") f.write('\n') f.write('#ifdef __cplusplus\n') diff --git a/Python/Python-ast.c b/Python/Python-ast.c index dc2b1304f1..0774c58e2d 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -8991,11 +8991,6 @@ PyObject* PyAST_mod2obj(mod_ty t) /* 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]; char *req_name[] = {"Module", "Expression", "Interactive"}; |
