From cdd663c58847eced4c810b05edda251c70a10438 Mon Sep 17 00:00:00 2001 From: shadchin Date: Thu, 7 May 2026 07:27:37 +0300 Subject: Update Python 3 to 3.13.13 commit_hash:526db1f6570443324e2690db042314848cd47d2e --- contrib/tools/python3/Python/getargs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/tools/python3/Python/getargs.c') diff --git a/contrib/tools/python3/Python/getargs.c b/contrib/tools/python3/Python/getargs.c index e95ccec851f..13e0ae7c167 100644 --- a/contrib/tools/python3/Python/getargs.c +++ b/contrib/tools/python3/Python/getargs.c @@ -2189,7 +2189,7 @@ vgetargskeywordsfast_impl(PyObject *const *args, Py_ssize_t nargs, if (i < parser->min) { /* Less arguments than required */ if (i < pos) { - Py_ssize_t min = Py_MIN(pos, parser->min); + int min = Py_MIN(pos, parser->min); PyErr_Format(PyExc_TypeError, "%.200s%s takes %s %d positional argument%s" " (%zd given)", -- cgit v1.3