diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-13 07:18:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-13 07:18:45 (GMT) |
commit | 022ac0a497b668d8b15e34e582a6396ead1a35e1 (patch) | |
tree | c8d9b4e5f61a09cecda8f68083a6c12c24ad8fe2 /Include/Python-ast.h | |
parent | 8725c83ed5ca8959195ad8326db99d564a921749 (diff) | |
download | cpython-022ac0a497b668d8b15e34e582a6396ead1a35e1.zip cpython-022ac0a497b668d8b15e34e582a6396ead1a35e1.tar.gz cpython-022ac0a497b668d8b15e34e582a6396ead1a35e1.tar.bz2 |
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.
Diffstat (limited to 'Include/Python-ast.h')
-rw-r--r-- | Include/Python-ast.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/Python-ast.h b/Include/Python-ast.h index 490d3b0..6262650 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 |