Ejemplo n.º 1
0
def XPath(expr):
    ans = xpath_cache.get(expr, None)
    if ans is None:
        xpath_cache[expr] = ans = X(expr, namespaces=namespaces)
    return ans
Ejemplo n.º 2
0
 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