diff options
| author | Victor Stinner <vstinner@python.org> | 2023-08-24 22:51:22 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-24 22:51:22 (GMT) |
| commit | 4e5a7284eef4308dce252ca1115d4a5a5b7e6ae8 (patch) | |
| tree | 31cacab08c7168e0868d6231a70b4a679fffdf58 /Python/clinic/_warnings.c.h | |
| parent | be800f4be78106d7566c694b3a5652761798db96 (diff) | |
| download | cpython-4e5a7284eef4308dce252ca1115d4a5a5b7e6ae8.zip cpython-4e5a7284eef4308dce252ca1115d4a5a5b7e6ae8.tar.gz cpython-4e5a7284eef4308dce252ca1115d4a5a5b7e6ae8.tar.bz2 | |
gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)
Argument Clinic now uses the new public PyLong_AsInt(), rather than
the old name _PyLong_AsInt().
Diffstat (limited to 'Python/clinic/_warnings.c.h')
| -rw-r--r-- | Python/clinic/_warnings.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/clinic/_warnings.c.h b/Python/clinic/_warnings.c.h index c716639..b39e412 100644 --- a/Python/clinic/_warnings.c.h +++ b/Python/clinic/_warnings.c.h @@ -194,7 +194,7 @@ warnings_warn_explicit(PyObject *module, PyObject *const *args, Py_ssize_t nargs goto exit; } filename = args[2]; - lineno = _PyLong_AsInt(args[3]); + lineno = PyLong_AsInt(args[3]); if (lineno == -1 && PyErr_Occurred()) { goto exit; } @@ -243,4 +243,4 @@ warnings_filters_mutated(PyObject *module, PyObject *Py_UNUSED(ignored)) { return warnings_filters_mutated_impl(module); } -/*[clinic end generated code: output=f8d67e0f75771c36 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=0e2b367a662bf51b input=a9049054013a1b77]*/ |
