1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 21:04:07 +00:00

updated wrong documentation

This commit is contained in:
Pablo Hoffman 2009-11-13 20:03:56 -02:00
parent d5ae94df55
commit 0d6aee1f12

View File

@ -175,7 +175,7 @@ request_received
----------------
.. signal:: request_received
.. function:: request_received(request, spider, response)
.. function:: request_received(request, spider)
Sent when the engine receives a :class:`~scrapy.http.Request` from a spider.
@ -185,10 +185,6 @@ request_received
:param spider: the spider which generated the request
:type spider: :class:`~scrapy.spider.BaseSpider` object
:param response: the :class:`~scrapy.http.Response` fed to the spider which
generated the request later
:type response: :class:`~scrapy.http.Response` object
request_uploaded
----------------