def XPath(expr): ans = xpath_cache.get(expr, None) if ans is None: xpath_cache[expr] = ans = X(expr, namespaces=namespaces) return ans
def XPath(self, expr): ans = self.xpath_cache.get(expr, None) if ans is None: self.xpath_cache[expr] = ans = X(expr, namespaces=self.namespaces) return ans