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

Merge pull request #2958 from codeaditya/update-links

Link "Debugging in Python" article to its new location
This commit is contained in:
Mikhail Korobov 2017-10-26 17:01:47 +05:00 committed by GitHub
commit 98fb03e8bd

View File

@ -280,7 +280,7 @@ An integer which specifies a number of items. If the spider scrapes more than
that amount and those items are passed by the item pipeline, the that amount and those items are passed by the item pipeline, the
spider will be closed with the reason ``closespider_itemcount``. spider will be closed with the reason ``closespider_itemcount``.
Requests which are currently in the downloader queue (up to Requests which are currently in the downloader queue (up to
:setting:`CONCURRENT_REQUESTS` requests) are still processed. :setting:`CONCURRENT_REQUESTS` requests) are still processed.
If zero (or non set), spiders won't be closed by number of passed items. If zero (or non set), spiders won't be closed by number of passed items.
.. setting:: CLOSESPIDER_PAGECOUNT .. setting:: CLOSESPIDER_PAGECOUNT
@ -373,4 +373,4 @@ For more info see `Debugging in Python`.
This extension only works on POSIX-compliant platforms (ie. not Windows). This extension only works on POSIX-compliant platforms (ie. not Windows).
.. _Python debugger: https://docs.python.org/2/library/pdb.html .. _Python debugger: https://docs.python.org/2/library/pdb.html
.. _Debugging in Python: http://www.ferg.org/papers/debugging_in_python.html .. _Debugging in Python: https://pythonconquerstheuniverse.wordpress.com/2009/09/10/debugging-in-python/