mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
Jim Ahlstrom patch: the module doc string is too long for 16-bit VC
1.5. Omit the second part.
This commit is contained in:
parent
3aa23fdd47
commit
a71b5f4e1d
1 changed files with 5 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue