mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Change two instance of format strings for PyString_FromFormat() to use %ld
instead of %d .
This commit is contained in:
parent
7892b1c651
commit
0046839dd2
1 changed files with 2 additions and 2 deletions
|
@ -2054,7 +2054,7 @@ count_next(countobject *lz)
|
||||||
static PyObject *
|
static PyObject *
|
||||||
count_repr(countobject *lz)
|
count_repr(countobject *lz)
|
||||||
{
|
{
|
||||||
return PyString_FromFormat("count(%d)", lz->cnt);
|
return PyString_FromFormat("count(%ld)", lz->cnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
PyDoc_STRVAR(count_doc,
|
PyDoc_STRVAR(count_doc,
|
||||||
|
@ -2374,7 +2374,7 @@ repeat_repr(repeatobject *ro)
|
||||||
result = PyString_FromFormat("repeat(%s)",
|
result = PyString_FromFormat("repeat(%s)",
|
||||||
PyString_AS_STRING(objrepr));
|
PyString_AS_STRING(objrepr));
|
||||||
else
|
else
|
||||||
result = PyString_FromFormat("repeat(%s, %d)",
|
result = PyString_FromFormat("repeat(%s, %ld)",
|
||||||
PyString_AS_STRING(objrepr), ro->cnt);
|
PyString_AS_STRING(objrepr), ro->cnt);
|
||||||
Py_DECREF(objrepr);
|
Py_DECREF(objrepr);
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue