summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-08-25 09:13:59 (GMT)
committerGitHub <noreply@github.com>2023-08-25 09:13:59 (GMT)
commite59a95238b76f518e936b6e70da9207d923964db (patch)
treedda31d8f166f311c82323a20effffeec499e3874 /Python
parent24aa249a6633249570978d6aae6f7b21581ee085 (diff)
downloadcpython-e59a95238b76f518e936b6e70da9207d923964db.zip
cpython-e59a95238b76f518e936b6e70da9207d923964db.tar.gz
cpython-e59a95238b76f518e936b6e70da9207d923964db.tar.bz2
gh-108444: Remove _PyLong_AsInt() function (#108461)
* Update Parser/asdl_c.py to regenerate Python/Python-ast.c. * Remove _PyLong_AsInt() alias to PyLong_AsInt().
Diffstat (limited to 'Python')
-rw-r--r--Python/Python-ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index 60dd121..77b23f7 100644
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -1099,7 +1099,7 @@ static int obj2ast_int(struct ast_state* Py_UNUSED(state), PyObject* obj, int* o
return 1;
}
- i = _PyLong_AsInt(obj);
+ i = PyLong_AsInt(obj);
if (i == -1 && PyErr_Occurred())
return 1;
*out = i;