Kaydet (Commit) a2678f3e authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Fix the advertised size of PyCFunctionObjects in sys._debugmallocstats().

......@@ -352,6 +352,6 @@ void
_PyCFunction_DebugMallocStats(FILE *out)
{
_PyDebugAllocatorStats(out,
"free PyCFunction",
numfree, sizeof(PyCFunction));
"free PyCFunctionObjects",
numfree, sizeof(PyCFunctionObject));
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment