mirror of
https://github.com/python/cpython.git
synced 2026-07-16 15:05:31 -04:00
85dd6cb6df
The implementation of __sizeof__() methods using _PyObject_SIZE() now use an unsigned type (size_t) to compute the size, rather than a signed type (Py_ssize_t). Cast explicitly signed (Py_ssize_t) values to unsigned type (Py_ssize_t).