def init(self, type, value=None): """initializes an object with a specified type and value""" if value is not None: return init(self.Pairing, type, value) return init(self.Pairing, type)
def init(self, type, value=None): """initializes an object with a specified type and value""" if value != None: return init(self.Pairing, type, value) # return self.Pairing.init(type, long(value)) return init(self.Pairing, type)
def init(self, type, value=None): if value != None: return init(self.Pairing, type, value) return init(self.Pairing, type)
def init(self, type, value=None): if value != None: return init(self.Pairing, type, value) # return self.Pairing.init(type, long(value)) return init(self.Pairing, type)