diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-27 06:52:01 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-27 06:52:01 +0000 |
commit | 7a2269b129e2c8feb76407ecfd77eb971b5cb9ab (patch) | |
tree | 87feeaf52d13975f136f8226481e28cee4b52c4b /Objects/intobject.c | |
parent | 63cc42826f52729173c22ee17d2c24ef9ab660cd (diff) | |
download | cpython-7a2269b129e2c8feb76407ecfd77eb971b5cb9ab.tar.gz |
Pluralss only need one s, not 2 (intss -> ints)
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r-- | Objects/intobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c index 9158aa4db9..e3139542e9 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", |