def __eq__(self, other):
     if other == None:
         return 0
     v = libxsltmod.xsltCompareStylesheetsEqual(self._o, other._o)
     return v
示例#2
0
 def __eq__(self, other):
     if other == None:
         return 0
     v = libxsltmod.xsltCompareStylesheetsEqual(self._o, other._o)
     return v
 def compareStylesheetsEqual(self, other):
     """Compare one stylesheet with another"""
     if other == None: other__o = None
     else: other__o = other._o
     ret = libxsltmod.xsltCompareStylesheetsEqual(self._o, other__o)
     return ret
示例#4
0
 def compareStylesheetsEqual(self, other):
     """Compare one stylesheet with another"""
     if other == None: other__o = None
     else: other__o = other._o
     ret = libxsltmod.xsltCompareStylesheetsEqual(self._o, other__o)
     return ret