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