mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-27 08:43:43 +00:00
Minor correction in docstring
--HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40430
This commit is contained in:
parent
04bd65de00
commit
26b4be78e3
@ -57,8 +57,6 @@ class CrawlSpider(BaseSpider):
|
|||||||
return method
|
return method
|
||||||
|
|
||||||
super(CrawlSpider, self).__init__()
|
super(CrawlSpider, self).__init__()
|
||||||
if not hasattr(self, 'rules'):
|
|
||||||
return
|
|
||||||
for rule in self.rules:
|
for rule in self.rules:
|
||||||
rule.callback = _get_method(rule.callback)
|
rule.callback = _get_method(rule.callback)
|
||||||
rule.link_filter = _get_method(rule.link_filter)
|
rule.link_filter = _get_method(rule.link_filter)
|
||||||
@ -106,9 +104,8 @@ class CrawlSpider(BaseSpider):
|
|||||||
|
|
||||||
def _parse_wrapper(self, response, callback, cb_kwargs, follow):
|
def _parse_wrapper(self, response, callback, cb_kwargs, follow):
|
||||||
"""
|
"""
|
||||||
This is were any response (except the ones from the start urls) arrives, and
|
This is were any response arrives, and were it's decided whether
|
||||||
were it's decided whether to extract links or not from it, and if it will
|
to extract links or not from it, and if it will be parsed or not.
|
||||||
be parsed or not.
|
|
||||||
It returns a list of requests/items.
|
It returns a list of requests/items.
|
||||||
"""
|
"""
|
||||||
res = []
|
res = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user