summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-13 07:46:01 (GMT)
committerGitHub <noreply@github.com>2019-06-13 07:46:01 (GMT)
commit032bf30643fff49b5595b53f9c1ce5b2cd2df504 (patch)
tree63d2867cac494cd5c41a809866fd08074fcc60a3 /Include
parentc80183e6ca8c0ce834fc6444a71c7f31a3eb05b7 (diff)
downloadcpython-032bf30643fff49b5595b53f9c1ce5b2cd2df504.zip
cpython-032bf30643fff49b5595b53f9c1ce5b2cd2df504.tar.gz
cpython-032bf30643fff49b5595b53f9c1ce5b2cd2df504.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. (cherry picked from commit 022ac0a497b668d8b15e34e582a6396ead1a35e1) Co-authored-by: Victor Stinner <vstinner@redhat.com>
Diffstat (limited to 'Include')
-rw-r--r--Include/Python-ast.h1
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