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

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


http://hg.python.org/cpython/rev/1c794d713e70
changeset:   83253:1c794d713e70
parent:      83251:4ae6095b4638
parent:      83252:bc514cc5d65b
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Thu Apr 11 21:02:20 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
@@ -352,6 +352,6 @@
 _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