remove no deprecated request_scheduled signal

It will be replaced by more accurate scheduler signals (proposal will
come soon)
This commit is contained in:
Pablo Hoffman 2013-06-27 11:23:18 -03:00
parent a2ddfab43b
commit 0f4b70f582
1 changed files with 0 additions and 17 deletions

View File

@ -181,23 +181,6 @@ spider_error
:type spider: :class:`~scrapy.spider.BaseSpider` object
request_scheduled
----------------
.. signal:: request_scheduled
.. function:: request_scheduled(request, spider)
Sent when the engine schedule a :class:`~scrapy.http.Request`.
It will receive the requests generated from middlewares.
This signal does not support returning deferreds from their handlers.
:param request: the request scheduled
:type request: :class:`~scrapy.http.Request` object
:param spider: the spider which generated the original request
:type spider: :class:`~scrapy.spider.BaseSpider` object
response_received
-----------------