summaryrefslogtreecommitdiffstats
path: root/Python/clinic/_warnings.c.h
diff options
context:
space:
mode:
Diffstat (limited to 'Python/clinic/_warnings.c.h')
-rw-r--r--Python/clinic/_warnings.c.h4
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]*/