]> granicus.if.org Git - python/commitdiff
Fix supernumerary 's' in sys._debugmallocstats() output.
authorAntoine Pitrou <solipsis@pitrou.net>
Thu, 11 Apr 2013 19:01:40 +0000 (21:01 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Thu, 11 Apr 2013 19:01:40 +0000 (21:01 +0200)
Objects/methodobject.c

index 60df302b0c37a20a1fa980d9433821d9ea6fb0b7..f0685dd606619593de2db8aefa494deb2af538c1 100644 (file)
@@ -343,7 +343,7 @@ void
 _PyCFunction_DebugMallocStats(FILE *out)
 {
     _PyDebugAllocatorStats(out,
-                           "free PyCFunctionObjects",
+                           "free PyCFunctionObject",
                            numfree, sizeof(PyCFunctionObject));
 }