summaryrefslogtreecommitdiff
path: root/Objects/methodobject.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-04-11 21:01:40 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2013-04-11 21:01:40 +0200
commit3a5b24bc5221c7677d257ae3829374ceb7a4dcf3 (patch)
treef37eddad5bbd58636cbe8fbfec824e4675ca86b2 /Objects/methodobject.c
parent3eaeccfa5da323cb10003c8977dc228b6111ebeb (diff)
downloadcpython-3a5b24bc5221c7677d257ae3829374ceb7a4dcf3.tar.gz
Fix supernumerary 's' in sys._debugmallocstats() output.
Diffstat (limited to 'Objects/methodobject.c')
-rw-r--r--Objects/methodobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index 60df302b0c..f0685dd606 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));
}