From: Neal Norwitz Date: Thu, 27 Mar 2008 06:52:01 +0000 (+0000) Subject: Pluralss only need one s, not 2 (intss -> ints) X-Git-Tag: v2.6a2~79 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0a56ff9089718c042bc17e4c3e78fb32eb12525;p=thirdparty%2FPython%2Fcpython.git Pluralss only need one s, not 2 (intss -> ints) --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 0eaca0f7bea7..848a47fe2e05 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -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", diff --git a/Objects/intobject.c b/Objects/intobject.c index 9158aa4db9ee..e3139542e9fe 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -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",