Commit 3a3773a8 authored by Fred Drake's avatar Fred Drake

The attempt to protect against MS_WIN16 compilers that do not support long

string literals has not been tested on an MS_WIN16 platform; the trailing
";" was inside the #ifndef MS_WIN16, which should cause an error (missing
semi-colon) when compiled with that symbol #defined.
parent f8f83e6c
......@@ -379,8 +379,9 @@ getrefcount() -- return the reference count for an object (plus one :-)\n\
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
/* end of sys_doc */ ;
PyObject *
_PySys_Init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment