Skip to content

Commit ccede59

Browse files
committed
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.
1 parent 6bd8b25 commit ccede59

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Python/sysmodule.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,9 @@ getrefcount() -- return the reference count for an object (plus one :-)\n\
379379
setcheckinterval() -- control how often the interpreter checks for events\n\
380380
setprofile() -- set the global profiling function\n\
381381
settrace() -- set the global debug tracing function\n\
382-
";
382+
"
383383
#endif
384+
/* end of sys_doc */ ;
384385

385386
PyObject *
386387
_PySys_Init(void)

0 commit comments

Comments
 (0)