From: Antoine Pitrou Date: Thu, 11 Apr 2013 19:01:40 +0000 (+0200) Subject: Fix supernumerary 's' in sys._debugmallocstats() output. X-Git-Tag: v3.3.2~136 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=36b045f4db128a308f311058330c81995acf68fe;p=thirdparty%2FPython%2Fcpython.git Fix supernumerary 's' in sys._debugmallocstats() output. --- diff --git a/Objects/methodobject.c b/Objects/methodobject.c index 60df302b0c37..f0685dd60661 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)); }