Re: [Python-checkins] CVS: python/dist/src/Tools/perfecthash GenUCNHash.py,1.1,1.2
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)
</F>
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/
participants (2)
-
Fredrik Lundh
-
M.-A. Lemburg