From 8bee76106e8da9fd6011432d2f60861a94c623db Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 25 Aug 2004 02:22:30 +0000 Subject: PEP 292 classes Template and SafeTemplate are added to the string module. This patch includes test cases and documentation updates, as well as NEWS file updates. This patch also updates the sre modules so that they don't import the string module, breaking direct circular imports. --- Lib/sre_constants.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Lib/sre_constants.py') diff --git a/Lib/sre_constants.py b/Lib/sre_constants.py index 002b195fe1..1863f48bb1 100644 --- a/Lib/sre_constants.py +++ b/Lib/sre_constants.py @@ -217,12 +217,11 @@ SRE_INFO_LITERAL = 2 # entire pattern is literal (given by prefix) SRE_INFO_CHARSET = 4 # pattern starts with character from given set if __name__ == "__main__": - import string def dump(f, d, prefix): items = d.items() items.sort(key=lambda a: a[1]) for k, v in items: - f.write("#define %s_%s %s\n" % (prefix, string.upper(k), v)) + f.write("#define %s_%s %s\n" % (prefix, k.upper(), v)) f = open("sre_constants.h", "w") f.write("""\ /* -- cgit v1.2.1