Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f2fdd31e
Commit
f2fdd31e
authored
Jul 30, 2012
by
Ned Deily
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
79a348ad
54f939b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Misc/NEWS
Misc/NEWS
+3
-0
Python/traceback.c
Python/traceback.c
+1
-1
No files found.
Misc/NEWS
View file @
f2fdd31e
...
...
@@ -68,6 +68,9 @@ Core and Builtins
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
.
...
...
Python/traceback.c
View file @
f2fdd31e
...
...
@@ -14,7 +14,7 @@
#define OFF(x) offsetof(PyTracebackObject, x)
#define PUTS(fd, str) write(fd, str, strlen(str))
#define MAX_STRING_LENGTH
1
00
#define MAX_STRING_LENGTH
5
00
#define MAX_FRAME_DEPTH 100
#define MAX_NTHREADS 100
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment