[Python-Dev] Re: [Python-checkins] CVS: python/dist/src/Tools/perfecthash GenUCNHash.py,1.1,1.2

Fredrik Lundh Fredrik Lundh" <effbot@telia.com
Fri, 30 Jun 2000 12:04:00 +0200


MAL wrote:
>     out.write(header)
>     out =3D open(cFileName, "w")
> !   out.write("#include "%s"\n" % headerFileName)
>     out.write(code)
>     perfHash.generate_graph(out)

umm.  I suppose you meant:

> !   out.write('#include "%s"\n' % headerFileName)

or possibly:

> !   out.write("#include \"%s\"\n" % headerFileName)

</F>