]> granicus.if.org Git - python/commitdiff
Pluralss only need one s, not 2 (intss -> ints)
authorNeal Norwitz <nnorwitz@gmail.com>
Thu, 27 Mar 2008 06:52:01 +0000 (06:52 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Thu, 27 Mar 2008 06:52:01 +0000 (06:52 +0000)
Objects/floatobject.c
Objects/intobject.c

index 0eaca0f7bea769784b033be9b7e1402cca1f6484..848a47fe2e051af7b3b630489cc8254c3d4733f1 100644 (file)
@@ -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",
index 9158aa4db9eef9cb2c2b2989b941760bf2838849..e3139542e9febfa5fa73b14ee966841cd279a59b 100644 (file)
@@ -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",