From: Fred Drake Date: Thu, 18 Feb 1999 16:11:12 +0000 (+0000) Subject: Make the _rmtt regular expression deal with the new CSS-friendly X-Git-Tag: v1.5.2c1~322 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4cc902f4641a49971b9b6eaea002d5b2c861ff00;p=thirdparty%2FPython%2Fcpython.git Make the _rmtt regular expression deal with the new CSS-friendly changes to the HTML documentation. --- diff --git a/Doc/tools/buildindex.py b/Doc/tools/buildindex.py index 6b1682f8c1a2..644ec4351f6b 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):