this is by first time to use pdb debugger in python. Please pardon me if this is a dumb question.

When I trace to a function, inside the function I would like to print the values of those variable names with underscore in the beginning, eg. p __seqLen. It keeps showing AttributeError: AttributeError("Converter instance has no attribute '__seqLen'",) I also tried to use p self.__seqLen. not working as well. may I ask how I can print those values? thanks in advanced.

link|improve this question

You could dir(p) and find out all the attributes it has. Then print whichever one you want. – Noufal Ibrahim May 11 '11 at 5:35
Noufal, p in the context of pdb refers to "print". – Lakshman Prasad May 11 '11 at 7:16
feedback

2 Answers

up vote 1 down vote accepted
p locals()
p globals()

could help.

link|improve this answer
thanks. this is useful. – Ken May 11 '11 at 5:39
feedback

You might be running into Python's private name mangling. Python will mangle identifiers that begin with two or more underscores and do not end with two or more underscores. It transforms __somename into _Class__somename.

link|improve this answer
thanks for the detail information. I need a quick way to do it. thanks. – Ken May 11 '11 at 5:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.