[Python-checkins] cpython (3.3): Fix supernumerary 's' in sys._debugmallocstats() output.

antoine.pitrou python-checkins at python.org
Thu Apr 11 21:02:50 CEST 2013


http://hg.python.org/cpython/rev/bc514cc5d65b
changeset:   83252:bc514cc5d65b
branch:      3.3
parent:      83249:20efcabcd5c0
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Thu Apr 11 21:01:40 2013 +0200
summary:
  Fix supernumerary 's' in sys._debugmallocstats() output.

files:
  Objects/methodobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/methodobject.c b/Objects/methodobject.c
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -343,7 +343,7 @@
 _PyCFunction_DebugMallocStats(FILE *out)
 {
     _PyDebugAllocatorStats(out,
-                           "free PyCFunctionObjects",
+                           "free PyCFunctionObject",
                            numfree, sizeof(PyCFunctionObject));
 }
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list