From: Fred Drake Date: Tue, 10 Mar 1998 14:33:27 +0000 (+0000) Subject: clean_title(): Remove debugging prints. X-Git-Tag: v1.5.1~416 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eff1f7622aaa4d0ba180290f614e49543e05eef1;p=python clean_title(): Remove debugging prints. --- diff --git a/Doc/tools/toc2bkm.py b/Doc/tools/toc2bkm.py index 616b79a26d..6ccda1fc62 100755 --- a/Doc/tools/toc2bkm.py +++ b/Doc/tools/toc2bkm.py @@ -86,14 +86,12 @@ def clean_title(title): m = title_rx.search(title, pos) if m: start = m.start() - print "found", `title[start:m.end()]` if title[start:start+15] != "\\textunderscore": title = title[:start] + title[m.end():] pos = start + 1 else: break title = string.translate(title, title_trans, "{}") - print `title` return title