I try to list all the attributes of an object in Python pdb.
Let's say I want to list all the attributes and all methods of sys.stderr.
How can I do that?
|
I try to list all the attributes of an object in Python pdb. Let's say I want to list all the attributes and all methods of How can I do that? |
||||
|
|
|
For pdb, you should be able to do |
||||
|
If a is your object, use |
|||