diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-04-02 05:22:30 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-04-02 05:22:30 (GMT) |
commit | e3ba931aa439fdfe69f1c1c750ce06427f5f607b (patch) | |
tree | 1c8ad813f05538babecd17d7eed923cabe79a543 /Lib/sre_constants.py | |
parent | e188d52a7ec912c9752fdb1e9c1b97c5848f0889 (diff) | |
download | cpython-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.py | 2 |
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" |