Merge branch 'master' into doc

This commit is contained in:
Cj Malone 2026-08-04 16:32:56 +01:00
commit 3e726929f8
No known key found for this signature in database
2 changed files with 8 additions and 0 deletions

View File

@ -2042,6 +2042,13 @@ Backward-incompatible changes
``process_start_requests()`` has been replaced by ``process_start()``.
(:issue:`6729`)
- The ``scrape_func`` callable passed to
``scrapy.core.spidermw.SpiderMiddlewareManager.scrape_response()`` is now
called with 2 parameters, ``response`` and ``request``, instead of 3, and
must return a :class:`~twisted.internet.defer.Deferred` instead of an
iterable.
(:issue:`6787`)
- The now-deprecated ``start_requests()`` method, when it returns an iterable
instead of being defined as a generator, is now executed *after* the
:ref:`scheduler <topics-scheduler>` instance has been created.

View File

@ -26,6 +26,7 @@ Here is a simple example showing how you can catch signals and perform some acti
class DmozSpider(Spider):
name = "dmoz"
allowed_domains = ["dmoz.org"]
start_urls = [
"http://www.dmoz.org/Computers/Programming/Languages/Python/Books/",
"http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/",