summaryrefslogtreecommitdiff
path: root/Lib/sre_constants.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-04-10 17:10:48 +0000
committerGuido van Rossum <guido@python.org>2000-04-10 17:10:48 +0000
commita6fae5b7592cc3f4863fbeb3b396e99aacf9f5f4 (patch)
tree22ff4b62d1d569eabaa47f19f36c548b03afb9b3 /Lib/sre_constants.py
parent3fea3a8108c9934d8f1410e8b86b19c39825d093 (diff)
downloadcpython-a6fae5b7592cc3f4863fbeb3b396e99aacf9f5f4.tar.gz
Fredrik Lundh: new snapshot. Mostly reindented.
This one should work with unicode expressions, and compile a bit more silently.
Diffstat (limited to 'Lib/sre_constants.py')
-rw-r--r--Lib/sre_constants.py2
1 files changed, 1 insertions, 1 deletions
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"