[Python-checkins] cpython: Issue #15463: the faulthandler module truncates strings to 500 characters,

victor.stinner python-checkins at python.org
Mon Jul 30 13:08:40 CEST 2012


http://hg.python.org/cpython/rev/ff7fc6a91212
changeset:   78329:ff7fc6a91212
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Jul 30 13:08:58 2012 +0200
summary:
  Issue #15463: the faulthandler module truncates strings to 500 characters,
instead of 100, to be able to display long file paths

files:
  Misc/NEWS          |  3 +++
  Python/traceback.c |  2 +-
  2 files changed, 4 insertions(+), 1 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -68,6 +68,9 @@
 Library
 -------
 
+- Issue #15463: the faulthandler module truncates strings to 500 characters,
+  instead of 100, to be able to display long file paths
+
 - Issue #6056: Make multiprocessing use setblocking(True) on the
   sockets it uses.  Original patch by J Derek Wilson.
 
diff --git a/Python/traceback.c b/Python/traceback.c
--- a/Python/traceback.c
+++ b/Python/traceback.c
@@ -14,7 +14,7 @@
 #define OFF(x) offsetof(PyTracebackObject, x)
 
 #define PUTS(fd, str) write(fd, str, strlen(str))
-#define MAX_STRING_LENGTH 100
+#define MAX_STRING_LENGTH 500
 #define MAX_FRAME_DEPTH 100
 #define MAX_NTHREADS 100
 

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


More information about the Python-checkins mailing list