From c0a56ff9089718c042bc17e4c3e78fb32eb12525 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 27 Mar 2008 06:52:01 +0000 Subject: Pluralss only need one s, not 2 (intss -> ints) --- Objects/floatobject.c | 2 +- Objects/intobject.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 0eaca0f..848a47f 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 9158aa4..e313954 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", -- cgit v0.12