On Sun, Oct 12, 2008 at 10:20 AM, pr3d4t0r <[EMAIL PROTECTED]> wrote: > > On Oct 12, 9:17 am, pr3d4t0r <[EMAIL PROTECTED]> wrote: >> print dir(anObject) # this gives you a list of all the attributes. > > OKi, before we get pedantic: dir() will give you *most* of the > attributes. If you want even more obscure details, iterate through > the dictionaries and attributes in the object manually. > since we are going pedantic, you should be using the inspect module as neither dir or __dict__ will give you everything.
> Cheers, > > pr3d4t0r > http://www.istheserverup.com > http://www.teslatestament.com > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" 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/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
