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

30 Jun
2000
30 Jun
'00
3:04 a.m.
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>

30 Jun
30 Jun
3:15 a.m.
New subject: [Python-checkins] CVS: python/dist/src/Tools/perfecthash GenUCNHash.py,1.1,1.2
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/
8373
Age (days ago)
8373
Last active (days ago)
1 comments
2 participants
participants (2)
-
Fredrik Lundh
-
M.-A. Lemburg