diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-05-31 14:14:06 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-05-31 14:14:06 (GMT) |
commit | 5aee504ccb81ed6114e625af7bfa13635095a458 (patch) | |
tree | f53aa28083907bbe616551b13e3eaf69d7029656 /Lib/robotparser.py | |
parent | 7ce734cd72bc32b5062f90f37fbe0cbc3c0e104e (diff) | |
download | cpython-5aee504ccb81ed6114e625af7bfa13635095a458.zip cpython-5aee504ccb81ed6114e625af7bfa13635095a458.tar.gz cpython-5aee504ccb81ed6114e625af7bfa13635095a458.tar.bz2 |
Remove import of re, it is not used
Diffstat (limited to 'Lib/robotparser.py')
-rw-r--r-- | Lib/robotparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/robotparser.py b/Lib/robotparser.py index 7940586..71dcaee 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"] |