From dd2f92f040aa6a7f4ba852034a8f379a7cb3faed Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Fri, 2 Jan 2009 19:55:22 +0000 Subject: [PATCH] added comment about new docs --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40613 --- scrapy/trunk/scrapy/core/exceptions.py | 5 ++++- scrapy/trunk/scrapy/core/signals.py | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/scrapy/trunk/scrapy/core/exceptions.py b/scrapy/trunk/scrapy/core/exceptions.py index bf4fd7fd5..47decc140 100644 --- a/scrapy/trunk/scrapy/core/exceptions.py +++ b/scrapy/trunk/scrapy/core/exceptions.py @@ -1,5 +1,8 @@ """ Scrapy core exceptions + +These exceptions are documented in docs/ref/exceptions.rst. Please don't add +new exceptions here without documenting them there. """ # Internal @@ -44,4 +47,4 @@ class DropItem(Exception): class NotSupported(Exception): """Indicates a feature or method is not supported""" - pass \ No newline at end of file + pass diff --git a/scrapy/trunk/scrapy/core/signals.py b/scrapy/trunk/scrapy/core/signals.py index c946856e7..b8178853d 100644 --- a/scrapy/trunk/scrapy/core/signals.py +++ b/scrapy/trunk/scrapy/core/signals.py @@ -1,6 +1,10 @@ """ Scrapy core signals + +These signals are documented in docs/ref/signals.rst. Please don't add new +signals here without documenting them there. """ + from pydispatch import dispatcher from scrapy import log