summaryrefslogtreecommitdiffstats
path: root/Python/clinic/marshal.c.h
diff options
context:
space:
mode:
Diffstat (limited to 'Python/clinic/marshal.c.h')
-rw-r--r--Python/clinic/marshal.c.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/clinic/marshal.c.h b/Python/clinic/marshal.c.h
index a593b98..102e637 100644
--- a/Python/clinic/marshal.c.h
+++ b/Python/clinic/marshal.c.h
@@ -48,7 +48,7 @@ marshal_dump(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
if (nargs < 3) {
goto skip_optional;
}
- version = _PyLong_AsInt(args[2]);
+ version = PyLong_AsInt(args[2]);
if (version == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -112,7 +112,7 @@ marshal_dumps(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
if (nargs < 2) {
goto skip_optional;
}
- version = _PyLong_AsInt(args[1]);
+ version = PyLong_AsInt(args[1]);
if (version == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -161,4 +161,4 @@ exit:
return return_value;
}
-/*[clinic end generated code: output=12082d61d2942473 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=0f4ecfd941293f67 input=a9049054013a1b77]*/