On Sat, 17 Apr 2010 15:44:56 +0200, Andreas Waldenburger wrote: > On Sat, 17 Apr 2010 06:09:21 -0700 (PDT) vsoler > <vicente.so...@gmail.com> wrote: > >> I got the following error: >> TypeError: unbound method duplica() must be called with TTT instance as >> first argument (got int instance instead) >> >> What am I doing wrong? > > Not reading the error message. > > You need to create a TTT instance and call your method from that: > > inst = TTT() > inst.duplica(7)
He already has a TTT instance. Since he's calling the TTT.duplica method from another TTT method, the easiest way (and the most Pythonic, and the most sensible, is to do this: self.duplica(7) Calling duplica from the class as TTT.duplica will work, if he does: TTT.duplica(self, 7) but why would you want to? -- Steven -- http://mail.python.org/mailman/listinfo/python-list