diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-11 19:02:20 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-11 19:02:20 (GMT) |
commit | dc040f099d580029852555921b3483da027326c1 (patch) | |
tree | 4ecc276d6e1bef33a6922df575530ea41cbf4490 /Objects/methodobject.c | |
parent | 50b24d0d7cc7b787acc1f8481173e5e0d536fe28 (diff) | |
parent | 36b045f4db128a308f311058330c81995acf68fe (diff) | |
download | cpython-dc040f099d580029852555921b3483da027326c1.zip cpython-dc040f099d580029852555921b3483da027326c1.tar.gz cpython-dc040f099d580029852555921b3483da027326c1.tar.bz2 |
Fix supernumerary 's' in sys._debugmallocstats() output.
Diffstat (limited to 'Objects/methodobject.c')
-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 2d1f730..9944fad 100644 --- a/Objects/methodobject.c +++ b/Objects/methodobject.c @@ -352,6 +352,6 @@ void _PyCFunction_DebugMallocStats(FILE *out) { _PyDebugAllocatorStats(out, - "free PyCFunctionObjects", + "free PyCFunctionObject", numfree, sizeof(PyCFunctionObject)); } |