bpo-9566: Fix a warning in Python/getargs.c (#2890)

This commit is contained in:
Segev Finer 2017-07-26 18:58:25 +03:00 committed by Steve Dower
parent 067931dd95
commit e7bc7aac3d
1 changed files with 1 additions and 1 deletions

View File

@ -2055,7 +2055,7 @@ vgetargskeywordsfast_impl(PyObject **args, Py_ssize_t nargs,
kwtuple = parser->kwtuple;
pos = parser->pos;
len = pos + PyTuple_GET_SIZE(kwtuple);
len = pos + (int)PyTuple_GET_SIZE(kwtuple);
if (len > STATIC_FREELIST_ENTRIES) {
freelist.entries = PyMem_NEW(freelistentry_t, len);