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