[issue30087] pdb issue with type conversion

2017-04-17 Thread Christoph Zimmermann
Christoph Zimmermann added the comment: Thanks for the hint! -- stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue30087] pdb issue with type conversion

2017-04-16 Thread Christoph Zimmermann
New submission from Christoph Zimmermann: Types cannot be converted properly while running under pdb control: python >>> t=(1,2,3) >>> list(t) [1, 2, 3] python pdb.py (Pdb) t=(1,2,3) (Pdb) list(t) *** Error in argument: '(t)' -- components: Extension M