Ajit Abraham schrieb: > I got stuck at the __str__ method. > > Where exactly do i type it? Is it directly after the index method? > > Thanks > > _Ajit Abraham > > class Root(controllers.RootController): > @expose(template="fooball.templates.welcome") > def index(self): > return dict(teams=Team.select(), players=Player.select()) > def __str__(self): > return "%s %s" % (self.city, self.nickname)
Why don't you just try it? You would have found that your example above works just right. The '__str__' method is (syntactically) a method like all the others, so you can put it anywhere within the class definition (at the class scope, i.e. with only one indentation level). Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

