commit | c02fbe52b2046a33f3d81628093da7ad2a98ba57 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Thu Feb 19 06:05:29 1998 +0000 |
committer | Fred Drake <fdrake@acm.org> | Thu Feb 19 06:05:29 1998 +0000 |
tree | 65f05aa0abb47db106d005d17558bd36b6a9d08f | |
parent | a73033fcc2916a416561bfad384afb900f207a27 [diff] [blame] |
breakable_re: Fix the RE so that module definition entries don't prevent combining.
diff --git a/Doc/tools/indfix.py b/Doc/tools/indfix.py index ede1d16..395f095 100755 --- a/Doc/tools/indfix.py +++ b/Doc/tools/indfix.py
@@ -40,7 +40,8 @@ write(" \subitem %s%s\n" % (subitem, pages)) -breakable_re = re.compile(r" \\item (.*) [(](.*)[)]((?:, \d+)+)") +breakable_re = re.compile( + r" \\item (.*) [(](.*)[)]((?:(?:, \d+)|(?:, \\[a-z]*\{\d+\}))+)") def main(): import getopt