[issue15565] pdb displays runt Exception strings

2012-12-19 Thread Hamish Downer
Hamish Downer added the comment: The bug affects me on python 2.7, as described by the original reporter. I am using Ubuntu 12.04 which comes with python 2.7.3 - was this fixed for 2.7 quite recently? However the python 3.2 that is packaged for Ubuntu 12.04 does not suffer from this bug. ---

[issue15565] pdb displays runt Exception strings

2012-08-06 Thread R. David Murray
R. David Murray added the comment: As far as I can see it has been. In both 2.7 and 3.3 I get: rdmurray@hey:~/python/p33>./python somecode.py > /home/rdmurray/python/p33/somecode.py(3)() -> raise Exception('This is a message that contains a lot of characters and is very long indeed.') (Pdb) n

[issue15565] pdb displays runt Exception strings

2012-08-06 Thread Paul
New submission from Paul: In Python 2.6, pdb doesn't show exception strings properly: #somecode.py import pdb pdb.set_trace() raise Exception('This is a message that contains a lot of characters and is very long indeed.') #terminal > somecode.py -> raise Exception('This is a message that conta