From b81e70ebdb28246e427249d386518bc03d08c959 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 10 Apr 2000 17:10:48 +0000 Subject: Fredrik Lundh: new snapshot. Mostly reindented. This one should work with unicode expressions, and compile a bit more silently. --- Lib/sre_constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/sre_constants.py') diff --git a/Lib/sre_constants.py b/Lib/sre_constants.py index f05c79777c..af883094d4 100644 --- a/Lib/sre_constants.py +++ b/Lib/sre_constants.py @@ -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" -- cgit v1.2.1