From 36b045f4db128a308f311058330c81995acf68fe Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Thu, 11 Apr 2013 21:01:40 +0200 Subject: Fix supernumerary 's' in sys._debugmallocstats() output. --- Objects/methodobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } -- cgit v0.12