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)
Esempio n. 2
0
    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)
Esempio n. 3
0
 def init(self, type, value=None):
     if value != None:
         return init(self.Pairing, type, value)
     return init(self.Pairing, type)
Esempio n. 4
0
    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)
Esempio n. 5
0
 def init(self, type, value=None):
     if value != None:
         return init(self.Pairing, type, value)
     return init(self.Pairing, type)
Esempio n. 6
0
    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)