summaryrefslogtreecommitdiff
path: root/Lib/robotparser.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-02-27 20:14:51 +0000
committerGuido van Rossum <guido@python.org>2003-02-27 20:14:51 +0000
commit5e10dde304be3726ca1600307486278657dfa9ab (patch)
tree1e2c70236e018ba564d3b3e4c0aa9e88afc6a433 /Lib/robotparser.py
parent53cd6a594e3fdcbe7bf1d8260169c2eec55b069f (diff)
downloadcpython-5e10dde304be3726ca1600307486278657dfa9ab.tar.gz
Get rid of many apply() calls.
Diffstat (limited to 'Lib/robotparser.py')
-rw-r--r--Lib/robotparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/robotparser.py b/Lib/robotparser.py
index 71dcaeeaf5..e2af545848 100644
--- a/Lib/robotparser.py
+++ b/Lib/robotparser.py
@@ -230,7 +230,7 @@ class Entry:
class URLopener(urllib.FancyURLopener):
def __init__(self, *args):
- apply(urllib.FancyURLopener.__init__, (self,) + args)
+ urllib.FancyURLopener.__init__(self, *args)
self.errcode = 200
def http_error_default(self, url, fp, errcode, errmsg, headers):