Coverage for scrapy/exceptions : 83%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
|
""" Scrapy core exceptions
These exceptions are documented in docs/topics/exceptions.rst. Please don't add new exceptions here without documenting them there. """
# Internal
"""Indicates a missing configuration situation"""
# HTTP and crawling
"""Indicates a decision was made not to process a request"""
"""Request the spider not to be closed yet"""
"""Raise this from callbacks to request the spider to be closed"""
self.reason = reason
# Items
"""Drop item from the item pipeline"""
"""Indicates a feature or method is not supported"""
# Commands
"""To indicate a command-line usage error""" self.print_help = kw.pop('print_help', True) super(UsageError, self).__init__(*a, **kw)
"""Warning category for deprecated features, since the default DeprecationWarning is silenced on Python 2.7+ """
|