mirror of https://github.com/scrapy/scrapy.git
Merge pull request #5608 from zaid-ismail031/master
Changed incorrect info in documentation regarding the return type of parse method.
This commit is contained in:
commit
4f296b61b0
|
|
@ -181,9 +181,10 @@ scrapy.Spider
|
||||||
scraped data and/or more URLs to follow. Other Requests callbacks have
|
scraped data and/or more URLs to follow. Other Requests callbacks have
|
||||||
the same requirements as the :class:`Spider` class.
|
the same requirements as the :class:`Spider` class.
|
||||||
|
|
||||||
This method, as well as any other Request callback, must return an
|
This method, as well as any other Request callback, must return a
|
||||||
iterable of :class:`~scrapy.Request` and/or :ref:`item objects
|
:class:`~scrapy.Request` object, an :ref:`item object <topics-items>`, an
|
||||||
<topics-items>`.
|
iterable of :class:`~scrapy.Request` objects and/or :ref:`item objects
|
||||||
|
<topics-items>`, or ``None``.
|
||||||
|
|
||||||
:param response: the response to parse
|
:param response: the response to parse
|
||||||
:type response: :class:`~scrapy.http.Response`
|
:type response: :class:`~scrapy.http.Response`
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue