summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-04-11 19:01:40 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-04-11 19:01:40 (GMT)
commit36b045f4db128a308f311058330c81995acf68fe (patch)
tree865292b6ab998a0e4402f459dd316d97fb099b5a /Objects
parent3836d70ed56d4b0f7fab8326470fc8abfe896391 (diff)
downloadcpython-36b045f4db128a308f311058330c81995acf68fe.zip
cpython-36b045f4db128a308f311058330c81995acf68fe.tar.gz
cpython-36b045f4db128a308f311058330c81995acf68fe.tar.bz2
Fix supernumerary 's' in sys._debugmallocstats() output.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/methodobject.c2
1 files changed, 1 insertions, 1 deletions
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));
}