[issue14795] Pdb incorrectly handles a method breakpoint when module not imported

2012-05-25 Thread Xavier de Gaye
Xavier de Gaye added the comment: Parsing the modules source seems a better way to fix this problem, see issue 14913. -- ___ Python tracker ___

[issue14795] Pdb incorrectly handles a method breakpoint when module not imported

2012-05-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue14795] Pdb incorrectly handles a method breakpoint when module not imported

2012-05-13 Thread Xavier de Gaye
New submission from Xavier de Gaye : In the following test, breakpoint 2 is set incorrectly at line 1 and pdb does not know how to set a breakpoint on method C.c_foo. However setting those two breakpoints on both methods is ok after the class definition has been executed. === main.py ==