On Aug 25, 2:55 pm, Esmail <[email protected]> wrote: > Re pdb, if you have a 'pointer' (ie reference) to an object, is there > an easy way to dump out its contents, ie all of its members short of > writing a method that does that and then calling it?
Usually pp vars(your_object) does what you want -- http://mail.python.org/mailman/listinfo/python-list
