From: Neal Norwitz Date: Fri, 31 May 2002 14:14:06 +0000 (+0000) Subject: Remove import of re, it is not used X-Git-Tag: v2.3c1~5548 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5aee504ccb81ed6114e625af7bfa13635095a458;p=thirdparty%2FPython%2Fcpython.git Remove import of re, it is not used --- diff --git a/Lib/robotparser.py b/Lib/robotparser.py index 7940586f9bc4..71dcaeeaf5b6 100644 --- a/Lib/robotparser.py +++ b/Lib/robotparser.py @@ -9,7 +9,7 @@ The robots.txt Exclusion Protocol is implemented as specified in http://info.webcrawler.com/mak/projects/robots/norobots-rfc.html """ -import re,urlparse,urllib +import urlparse,urllib __all__ = ["RobotFileParser"]