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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5aee504ccb81ed6114e625af7bfa13635095a458;p=python Remove import of re, it is not used --- diff --git a/Lib/robotparser.py b/Lib/robotparser.py index 7940586f9b..71dcaeeaf5 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"]