[Python-checkins] cpython: Issue #23848: Fix usage of _Py_DumpDecimal()

victor.stinner python-checkins at python.org
Wed Mar 23 13:38:14 EDT 2016


https://hg.python.org/cpython/rev/3247f8df5514
changeset:   100697:3247f8df5514
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Mar 23 18:37:54 2016 +0100
summary:
  Issue #23848: Fix usage of _Py_DumpDecimal()

files:
  Modules/faulthandler.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c
--- a/Modules/faulthandler.c
+++ b/Modules/faulthandler.c
@@ -388,7 +388,7 @@
     case EXCEPTION_STACK_OVERFLOW: PUTS(fd, "stack overflow"); break;
     default:
         PUTS(fd, "code ");
-        _Py_DumpDecimal(fd, code, sizeof(DWORD));
+        _Py_DumpDecimal(fd, code);
     }
     PUTS(fd, "\n\n");
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list