Remove duplicate module docstrings from spiders, items, loaders, shell, and pipelines.

Fixes #7699

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Rishi-gdrx 2026-07-04 12:57:22 +05:30
parent 751b384b87
commit cc9006a56b
11 changed files with 0 additions and 68 deletions

View File

@ -1,9 +1,3 @@
"""
Scrapy Shell
See documentation in docs/topics/shell.rst
"""
from __future__ import annotations
import asyncio

View File

@ -1,9 +1,3 @@
"""
The Extension Manager
See documentation in docs/topics/extensions.rst
"""
from __future__ import annotations
from typing import TYPE_CHECKING, Any

View File

@ -1,9 +1,3 @@
"""
Scrapy Item
See documentation in docs/topics/items.rst
"""
from __future__ import annotations
from abc import ABCMeta

View File

@ -1,9 +1,3 @@
"""
Item Loader
See documentation in docs/topics/loaders.rst
"""
from __future__ import annotations
from typing import TYPE_CHECKING, Any

View File

@ -1,9 +1,3 @@
"""
Item pipeline
See documentation in docs/topics/item-pipeline.rst
"""
from __future__ import annotations
import asyncio

View File

@ -1,9 +1,3 @@
"""
Files Pipeline
See documentation in topics/media-pipeline.rst
"""
from __future__ import annotations
import base64

View File

@ -1,9 +1,3 @@
"""
Images Pipeline
See documentation in topics/media-pipeline.rst
"""
from __future__ import annotations
import functools

View File

@ -1,9 +1,3 @@
"""Scrapy Shell
See documentation in docs/topics/shell.rst
"""
from __future__ import annotations
import asyncio

View File

@ -1,9 +1,3 @@
"""
Base class for Scrapy spiders
See documentation in docs/topics/spiders.rst
"""
from __future__ import annotations
import logging

View File

@ -1,10 +1,3 @@
"""
This modules implements the CrawlSpider which is the recommended spider to use
for scraping typical websites that requires crawling pages.
See documentation in docs/topics/spiders.rst
"""
from __future__ import annotations
import copy

View File

@ -1,10 +1,3 @@
"""
This module implements the XMLFeedSpider which is the recommended spider to use
for scraping from an XML feed.
See documentation in docs/topics/spiders.rst
"""
from __future__ import annotations
from typing import TYPE_CHECKING, Any