[issue6322] Pdb breakpoints don't work on lines without bytecode

2012-11-24 Thread Xavier de Gaye
Xavier de Gaye added the comment: See also how this is fixed at http://code.google.com/p/pdb-clone/source/detail?r=6b342324ebdc4558b83b9391e34478c1fa0752db -- ___ Python tracker _

[issue6322] Pdb breakpoints don't work on lines without bytecode

2012-10-14 Thread Xavier de Gaye
Xavier de Gaye added the comment: This is fixed in the proposed patch named pdb_lnotab.patch attached to issue 14913. -- ___ Python tracker ___ ___

[issue6322] Pdb breakpoints don't work on lines without bytecode

2012-10-07 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue6322] Pdb breakpoints don't work on lines without bytecode

2012-10-02 Thread Xavier de Gaye
Xavier de Gaye added the comment: Another example where pdb does not stop at breakpoints set at global, else and finally statements: $ nl -ba foo.py 1 x = 1 2 def main(): 3 global x 4 try: 5 if not x: 6 x = 2 7 else:

[issue6322] Pdb breakpoints don't work on lines without bytecode

2010-10-12 Thread R. David Murray
Changes by R. David Murray : -- nosy: +georg.brandl -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6322] Pdb breakpoints don't work on lines without bytecode

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: The OP has offered source code which fixes this issue, see msg89597. -- nosy: +BreamoreBoy stage: -> needs patch versions: +Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker __

[issue6322] Pdb breakpoints don't work on lines without bytecode

2009-06-22 Thread Andreas Kloeckner
New submission from Andreas Kloeckner : Take this program: 8< --- print "START" a = [ 1 for i in range(10)] 8< --- as "a.py", run "python -m pdb a.py", say "b 3" to set a breakpoint on line