From 9bf4e87753ba9fce088a4b3e32f56aeec2e564ab Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Fri, 6 Nov 2009 16:20:38 -0200 Subject: [PATCH] removed deprecated scrapy.xpath module (previously kept for backwards compatibility) --- scrapy/xpath/__init__.py | 5 ----- scrapy/xpath/selector.py | 5 ----- 2 files changed, 10 deletions(-) delete mode 100644 scrapy/xpath/__init__.py delete mode 100644 scrapy/xpath/selector.py diff --git a/scrapy/xpath/__init__.py b/scrapy/xpath/__init__.py deleted file mode 100644 index cef3c9869..000000000 --- a/scrapy/xpath/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -from scrapy.selector import * - -import warnings -warnings.warn("scrapy.xpath module is deprecated, use scrapy.selector instead", - DeprecationWarning, stacklevel=2) diff --git a/scrapy/xpath/selector.py b/scrapy/xpath/selector.py deleted file mode 100644 index 66f9834ad..000000000 --- a/scrapy/xpath/selector.py +++ /dev/null @@ -1,5 +0,0 @@ -from scrapy.selector import * - -import warnings -warnings.warn("scrapy.xpath.selector module is deprecated, use scrapy.selector instead", - DeprecationWarning, stacklevel=2)