diff --git a/scrapy/trunk/scrapy/xpath/selector.py b/scrapy/trunk/scrapy/xpath/selector.py index 0081e2044..bdc30cf89 100644 --- a/scrapy/trunk/scrapy/xpath/selector.py +++ b/scrapy/trunk/scrapy/xpath/selector.py @@ -86,10 +86,6 @@ class XPathSelector(object): class XPathSelectorList(list): """List of XPathSelector objects""" - def __getitem__(self, i): - return '__getitem__' - #return XPathSelectorList(list.__getslice__(self, i, j)) - def x(self, xpath): """Perform the given XPath query on each XPathSelector of the list and return a new (flattened) XPathSelectorList of the results"""