Example #1
0
 def join(self, combiner, other):
     XPathExpr.join(self, combiner, other)
     self.post_condition = other.post_condition
Example #2
0
 def join(self, combiner, other):
     XPathExpr.join(self, combiner, other)
     self.post_condition = other.post_condition
Example #3
0
 def __str__(self):
     path = XPathExpr.__str__(self)
     if self.post_condition:
         path = '(%s)[%s]' % (path, self.post_condition)
     return path
Example #4
0
 def __str__(self):
     path = XPathExpr.__str__(self)
     if self.post_condition:
         path = '(%s)[%s]' % (path, self.post_condition)
     return path