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.
dir(p)and find out all the attributes it has. Then print whichever one you want. – Noufal Ibrahim May 11 '11 at 5:35