*** python\dist\src\Lib\pydoc.py Tue Oct 30 20:20:26 2001 --- python-pydoc\dist\src\Lib\pydoc.py Mon Feb 25 10:28:34 2002 *************** *** 436,445 **** escape = escape or self.escape results = [] here = 0 ! pattern = re.compile(r'\b((http|ftp)://\S+[\w/]|' ! r'RFC[- ]?(\d+)|' ! r'PEP[- ]?(\d+)|' ! r'(self\.)?(\w+))\b') while 1: match = pattern.search(text, here) if not match: break --- 436,446 ---- escape = escape or self.escape results = [] here = 0 ! pattern = re.compile(r'''\b((http|ftp)://[^ '"<>\t\n\r\f\v]+[\w/]|''' ! r'RFC[- ]?(\d+)\b|' ! r'PEP[- ]?(\d+)\b|' ! r'(self\.)?(\w+)\b)') ! while 1: match = pattern.search(text, here) if not match: break