diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-07-31 01:25:28 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-07-31 01:25:28 (GMT) |
commit | 1713f9ae5e7ecb3fd516fe39d3c26fb705f26ef5 (patch) | |
tree | 5110ef0eec0cf03acf863ecfcb6103dc4f45f589 /Doc | |
parent | d5698cbbcade36d49bb32e797499d1190c38558a (diff) | |
download | cpython-1713f9ae5e7ecb3fd516fe39d3c26fb705f26ef5.zip cpython-1713f9ae5e7ecb3fd516fe39d3c26fb705f26ef5.tar.gz cpython-1713f9ae5e7ecb3fd516fe39d3c26fb705f26ef5.tar.bz2 |
Update the string limit in the faulthandler documentations
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/faulthandler.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/faulthandler.rst b/Doc/library/faulthandler.rst index c9b9546..b079b30 100644 --- a/Doc/library/faulthandler.rst +++ b/Doc/library/faulthandler.rst @@ -23,7 +23,7 @@ tracebacks: * Only ASCII is supported. The ``backslashreplace`` error handler is used on encoding. -* Each string is limited to 100 characters. +* Each string is limited to 500 characters. * Only the filename, the function name and the line number are displayed. (no source code) * It is limited to 100 frames and 100 threads. |