コード例 #1
0
ファイル: cssselectpatch.py プロジェクト: GRSEB9S/rfpow
 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
ファイル: cssselectpatch.py プロジェクト: GRSEB9S/rfpow
 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