Exemplo n.º 1
0
        def __getattr__(self, name):
                if (name=="__completions__"):
                        nn = PythonPlugin.listAttr(self.__dict__["f"], self.__dict__["t"])
                        rr = []
                        for n in nn:
                                rr.append(n)
                        return rr

                rr = PythonPlugin.getAttr(self.__dict__["f"], self.__dict__["t"], name)
		return rr
Exemplo n.º 2
0
	def __setattr__(self, name, value):
		PythonPlugin.setAttr(self.__dict__["f"], self.__dict__["t"], name, value)