[XML-SIG] FW: pyexpat compilation errors - Python 2.0b1

Juergen Hermann Juergen Hermann" <jhe@webde-ag.de
Fri, 14 Jul 2000 11:01:23 +0200


On Fri, 14 Jul 2000 05:09:18 +0800, Mark Favas wrote:
>  static char xmlparse_Parse__doc__[] =3D 
>! "Parse(data[, isfinal])\n\
>  Parse XML data.  `isfinal' should be true at end of input.";

Please do not use \ to escape a line break in string literals, that is 
K&R1 C and long forgotten. The Right Way(tm) is to do this:

char spam[] =3D 
	"line1\n"
	"line2\n"
	...
	"end";

That is ANSI-C and should work everywhere.


Ciao, J=FCrgen

--
J=FCrgen Hermann (jhe@webde-ag.de)
WEB.DE AG, Amalienbadstr.41, D-76227 Karlsruhe
Tel.: 0721/94329-0, Fax: 0721/94329-22