diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-11 19:01:40 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-11 19:01:40 (GMT) |
commit | 36b045f4db128a308f311058330c81995acf68fe (patch) | |
tree | 865292b6ab998a0e4402f459dd316d97fb099b5a /Objects | |
parent | 3836d70ed56d4b0f7fab8326470fc8abfe896391 (diff) | |
download | cpython-36b045f4db128a308f311058330c81995acf68fe.zip cpython-36b045f4db128a308f311058330c81995acf68fe.tar.gz cpython-36b045f4db128a308f311058330c81995acf68fe.tar.bz2 |
Fix supernumerary 's' in sys._debugmallocstats() output.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/methodobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c index 60df302..f0685dd 100644 --- a/Objects/methodobject.c +++ b/Objects/methodobject.c @@ -343,7 +343,7 @@ void _PyCFunction_DebugMallocStats(FILE *out) { _PyDebugAllocatorStats(out, - "free PyCFunctionObjects", + "free PyCFunctionObject", numfree, sizeof(PyCFunctionObject)); } |