Commit 54f939b9 authored by Victor Stinner's avatar Victor Stinner

Issue #15463: the faulthandler module truncates strings to 500 characters,

instead of 100, to be able to display long file paths
parent eb00d097
...@@ -68,6 +68,9 @@ Core and Builtins ...@@ -68,6 +68,9 @@ Core and Builtins
Library 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 - Issue #6056: Make multiprocessing use setblocking(True) on the
sockets it uses. Original patch by J Derek Wilson. sockets it uses. Original patch by J Derek Wilson.
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#define OFF(x) offsetof(PyTracebackObject, x) #define OFF(x) offsetof(PyTracebackObject, x)
#define PUTS(fd, str) write(fd, str, strlen(str)) #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_FRAME_DEPTH 100
#define MAX_NTHREADS 100 #define MAX_NTHREADS 100
......
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