From 9ad2752381b10cae83eb9e8044aa77dfd87d7039 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Wed, 21 Feb 2001 13:54:31 +0000 Subject: Use re in stead of regex, so we get rid of the annoying warning during startup. --- Mac/Tools/IDE/PyDocSearch.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Mac/Tools/IDE/PyDocSearch.py') diff --git a/Mac/Tools/IDE/PyDocSearch.py b/Mac/Tools/IDE/PyDocSearch.py index f975026d08..b036556da1 100644 --- a/Mac/Tools/IDE/PyDocSearch.py +++ b/Mac/Tools/IDE/PyDocSearch.py @@ -2,7 +2,7 @@ import aetools import Standard_Suite import Required_Suite import WWW_Suite -import regex +import re import W import macfs import os @@ -29,16 +29,16 @@ app = W.getapplication() #SIGNATURE='MSIE' # MS Explorer SIGNATURE='MOSS' # Netscape -_titlepat = regex.compile('\([^<]*\)') +_titlepat = re.compile('\([^<]*\)') def sucktitle(path): f = open(path) text = f.read(1024) # assume the title is in the first 1024 bytes f.close() lowertext = string.lower(text) - if _titlepat.search(lowertext) > 0: - a, b = _titlepat.regs[1] - return text[a:b] + matcher = _titlepat.search(lowertext) + if matcher: + return matcher.group(1) return path def verifydocpath(docpath): -- cgit v1.2.1