Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa23fd commit a71b5f4Copy full SHA for a71b5f4
1 file changed
Python/sysmodule.c
@@ -342,7 +342,10 @@ exc_value -- value of exception currently being handled\n\
342
exc_traceback -- traceback of exception currently being handled\n\
343
The function exc_info() should be used instead of these three,\n\
344
because it is thread-safe.\n\
345
-" /* !!! */ "\n\
+"
346
+#ifndef MS_WIN16
347
+/* Concatenating string here */
348
+"\n\
349
Static objects:\n\
350
\n\
351
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\
368
371
setprofile() -- set the global profiling function\n\
369
372
settrace() -- set the global debug tracing function\n\
370
373
";
374
+#endif
375
376
PyObject *
377
_PySys_Init()
0 commit comments