This patch looks large, but it just deletes the ^M characters and

untabifies the files.  No actual code changes were made.
This commit is contained in:
Andrew M. Kuchling 2000-04-02 05:22:30 +00:00
parent e188d52a7e
commit e3ba931aa4
3 changed files with 474 additions and 474 deletions

View file

@ -126,6 +126,6 @@ if __name__ == "__main__":
f = open("sre_constants.h", "w")
f.write("/* generated by sre_constants.py */\n")
for k, v in items:
f.write("#define SRE_OP_" + string.upper(k) + " " + str(v) + "\n")
f.write("#define SRE_OP_" + string.upper(k) + " " + str(v) + "\n")
f.close()
print "done"