]> granicus.if.org Git - python/commit
Issue #18942: sys._debugmallocstats() output was damaged on Windows.
authorTim Peters <tim@python.org>
Fri, 6 Sep 2013 03:57:04 +0000 (22:57 -0500)
committerTim Peters <tim@python.org>
Fri, 6 Sep 2013 03:57:04 +0000 (22:57 -0500)
commiteaa3bcc370cffe080e637fc1af592add9ff59793
treed4734499127a58ba7bae2fba2486da3127e4d51b
parent31b862d40bd154afcc82acf49c746b8bbee2f6be
Issue #18942: sys._debugmallocstats() output was damaged on Windows.

_PyDebugAllocatorStats() called PyOS_snprintf() with a %zd format
code, but MS doesn't support that code.  Interpolated
PY_FORMAT_SIZE_T in place of the "z".
Misc/NEWS
Objects/obmalloc.c