remove unused reges

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@926 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2003-06-24 20:57:57 +00:00
parent 457fdeaadb
commit 0dbf0949bd

View file

@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
import re, os, urlparse, urllib
import re, os, urlparse
from linkcheck import extensions
from UrlData import UrlData, ExcList
@ -69,8 +69,6 @@ acap # application configuration access protocol
|s?news # news
|nntp # news
)"""
_url = r"(?i)%s:[-a-zA-Z0-9$_.+!?*'/(),;]+" % _schemes
_url_re = re.compile(_url, re.VERBOSE)
class FileUrlData (UrlData):