diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-27 06:52:01 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-27 06:52:01 (GMT) |
commit | c0a56ff9089718c042bc17e4c3e78fb32eb12525 (patch) | |
tree | 0b0c24c19239fc9729be57d3de7fc37f5e922a91 | |
parent | 5802bb231945c04e34acef39b9a937bbe153a8d6 (diff) | |
download | cpython-c0a56ff9089718c042bc17e4c3e78fb32eb12525.zip cpython-c0a56ff9089718c042bc17e4c3e78fb32eb12525.tar.gz cpython-c0a56ff9089718c042bc17e4c3e78fb32eb12525.tar.bz2 |
Pluralss only need one s, not 2 (intss -> ints)
-rw-r--r-- | Objects/floatobject.c | 2 | ||||
-rw-r--r-- | 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", |