From 4cc902f4641a49971b9b6eaea002d5b2c861ff00 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 18 Feb 1999 16:11:12 +0000 Subject: Make the _rmtt regular expression deal with the new CSS-friendly changes to the HTML documentation. --- Doc/tools/buildindex.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/tools/buildindex.py b/Doc/tools/buildindex.py index 6b1682f..644ec43 100755 --- a/Doc/tools/buildindex.py +++ b/Doc/tools/buildindex.py @@ -77,7 +77,8 @@ def split_entry(str, which): return stuff -_rmtt = re.compile(r"(.*)(.*)(.*)$", re.IGNORECASE) +_rmtt = re.compile(r"(.*)(.*)(.*)$", + re.IGNORECASE) _rmparens = re.compile(r"\(\)") def split_entry_key(str): -- cgit v0.12