Pluralss only need one s, not 2 (intss -> ints)
This commit is contained in:
parent
5802bb2319
commit
c0a56ff908
|
@ -1719,7 +1719,7 @@ PyFloat_Fini(void)
|
|||
}
|
||||
else {
|
||||
fprintf(stderr,
|
||||
": %" PY_FORMAT_SIZE_T "d unfreed floats%s in %"
|
||||
": %" PY_FORMAT_SIZE_T "d unfreed float%s in %"
|
||||
PY_FORMAT_SIZE_T "d out of %"
|
||||
PY_FORMAT_SIZE_T "d block%s\n",
|
||||
fsum, fsum == 1 ? "" : "s",
|
||||
|
|
|
@ -1378,7 +1378,7 @@ PyInt_Fini(void)
|
|||
}
|
||||
else {
|
||||
fprintf(stderr,
|
||||
": %" PY_FORMAT_SIZE_T "d unfreed ints%s in %"
|
||||
": %" PY_FORMAT_SIZE_T "d unfreed int%s in %"
|
||||
PY_FORMAT_SIZE_T "d out of %"
|
||||
PY_FORMAT_SIZE_T "d block%s\n",
|
||||
isum, isum == 1 ? "" : "s",
|
||||
|
|
Loading…
Reference in New Issue