mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
_pickle: Fix load_counted_tuple(), use Py_ssize_t for size
Fix a warning on Windows 64-bit.
This commit is contained in:
parent
c44f70770b
commit
21b47117ac
1 changed files with 1 additions and 1 deletions
|
@ -5056,7 +5056,7 @@ load_counted_binunicode(UnpicklerObject *self, int nbytes)
|
|||
}
|
||||
|
||||
static int
|
||||
load_counted_tuple(UnpicklerObject *self, int len)
|
||||
load_counted_tuple(UnpicklerObject *self, Py_ssize_t len)
|
||||
{
|
||||
PyObject *tuple;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue