mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Marc-Andre Lemburg <mal@lemburg.com>:
Fixed a quote bug. Thanks to Fredrik Lundh.
This commit is contained in:
parent
f28dd83b86
commit
a4657f736c
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ typedef struct
|
|||
out = open(headerFileName, "w")
|
||||
out.write(header)
|
||||
out = open(cFileName, "w")
|
||||
out.write("#include "%s"\n" % headerFileName)
|
||||
out.write("#include \"%s\"\n" % headerFileName)
|
||||
out.write(code)
|
||||
perfHash.generate_graph(out)
|
||||
out.write("""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue