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
a71b5f4e
Commit
a71b5f4e
authored
Jan 14, 1999
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Jim Ahlstrom patch: the module doc string is too long for 16-bit VC
1.5. Omit the second part.
parent
3aa23fdd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Python/sysmodule.c
Python/sysmodule.c
+5
-1
No files found.
Python/sysmodule.c
View file @
a71b5f4e
...
...
@@ -342,7 +342,10 @@ exc_value -- value of exception currently being handled\n\
exc_traceback -- traceback of exception currently being handled
\n
\
The function exc_info() should be used instead of these three,
\n
\
because it is thread-safe.
\n
\
"
/* !!! */
"
\n
\
"
#ifndef MS_WIN16
/* Concatenating string here */
"
\n
\
Static objects:
\n
\
\n
\
maxint -- the largest supported integer (the smallest is -maxint-1)
\n
\
...
...
@@ -368,6 +371,7 @@ setcheckinterval() -- control how often the interpreter checks for events\n\
setprofile() -- set the global profiling function
\n
\
settrace() -- set the global debug tracing function
\n
\
"
;
#endif
PyObject
*
_PySys_Init
()
...
...
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