summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-01-14 19:07:00 (GMT)
committerGuido van Rossum <guido@python.org>1999-01-14 19:07:00 (GMT)
commita71b5f4e1d39cda3d78a20a1c41056d362c56630 (patch)
tree5238e55b2a5cceb60a88ea62d7d49f0d9342db9f /Python/sysmodule.c
parent3aa23fdd47406de288e8ff32581222de739737eb (diff)
downloadcpython-a71b5f4e1d39cda3d78a20a1c41056d362c56630.zip
cpython-a71b5f4e1d39cda3d78a20a1c41056d362c56630.tar.gz
cpython-a71b5f4e1d39cda3d78a20a1c41056d362c56630.tar.bz2
Jim Ahlstrom patch: the module doc string is too long for 16-bit VC
1.5. Omit the second part.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index e078d7b..fb4ab96 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -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()