mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
these variables ought to be Py_ssize_t
This commit is contained in:
parent
42ff105539
commit
d48bc9468f
1 changed files with 1 additions and 1 deletions
|
@ -584,7 +584,7 @@ PyBytes_Repr(PyObject *obj, int smartquotes)
|
|||
{
|
||||
register PyBytesObject* op = (PyBytesObject*) obj;
|
||||
Py_ssize_t i, length = Py_SIZE(op);
|
||||
size_t newsize, squotes, dquotes;
|
||||
Py_ssize_t newsize, squotes, dquotes;
|
||||
PyObject *v;
|
||||
unsigned char quote, *s, *p;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue