summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-04-11 19:02:20 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-04-11 19:02:20 (GMT)
commitdc040f099d580029852555921b3483da027326c1 (patch)
tree4ecc276d6e1bef33a6922df575530ea41cbf4490 /Objects
parent50b24d0d7cc7b787acc1f8481173e5e0d536fe28 (diff)
parent36b045f4db128a308f311058330c81995acf68fe (diff)
downloadcpython-dc040f099d580029852555921b3483da027326c1.zip
cpython-dc040f099d580029852555921b3483da027326c1.tar.gz
cpython-dc040f099d580029852555921b3483da027326c1.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 2d1f730..9944fad 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -352,6 +352,6 @@ void
_PyCFunction_DebugMallocStats(FILE *out)
{
_PyDebugAllocatorStats(out,
- "free PyCFunctionObjects",
+ "free PyCFunctionObject",
numfree, sizeof(PyCFunctionObject));
}