From 95495f1d9d13e9de00b9bee7c9f4694ad012e2fc Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Fri, 2 Jan 2009 18:24:02 +0000 Subject: [PATCH] removed domain_initialized signal which was defined but never used --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40607 --- scrapy/trunk/scrapy/core/signals.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scrapy/trunk/scrapy/core/signals.py b/scrapy/trunk/scrapy/core/signals.py index d84d702b3..c946856e7 100644 --- a/scrapy/trunk/scrapy/core/signals.py +++ b/scrapy/trunk/scrapy/core/signals.py @@ -30,10 +30,6 @@ domain_idle = object() # status is a string and its possible values are: "finished" or "cancelled" domain_closed = object() -# domain has been initialized (successful or not) -# args: domain, spider, status -domain_initialized = object() - # New request received from spiders # args: request, spider, response # response is the response (fed to the spider) which generated the request