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 Modules
messages: 291786
nosy: Christoph Zimmermann
priority: normal
severity: normal
status: open
title: pdb issue with type conversion
versions: Python 2.7, Python 3.6

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30087>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to