summaryrefslogtreecommitdiffstats
path: root/Lib/sre_constants.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-04-02 05:22:30 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2000-04-02 05:22:30 (GMT)
commite3ba931aa439fdfe69f1c1c750ce06427f5f607b (patch)
tree1c8ad813f05538babecd17d7eed923cabe79a543 /Lib/sre_constants.py
parente188d52a7ec912c9752fdb1e9c1b97c5848f0889 (diff)
downloadcpython-e3ba931aa439fdfe69f1c1c750ce06427f5f607b.zip
cpython-e3ba931aa439fdfe69f1c1c750ce06427f5f607b.tar.gz
cpython-e3ba931aa439fdfe69f1c1c750ce06427f5f607b.tar.bz2
This patch looks large, but it just deletes the ^M characters and
untabifies the files. No actual code changes were made.
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 af88309..f05c797 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"