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

M.-A. Lemburg mal@lemburg.com
Fri, 30 Jun 2000 12:15:23 +0200


Fredrik Lundh wrote:
> 
> MAL wrote:
> >     out.write(header)
> >     out = 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)

Oops, you're right.

Thanks.
-- 
Marc-Andre Lemburg
______________________________________________________________________
Business:                                      http://www.lemburg.com/
Python Pages:                           http://www.lemburg.com/python/