[New-bugs-announce] [issue30087] pdb issue with type conversion

Christoph Zimmermann report at bugs.python.org
Mon Apr 17 02:15:46 EDT 2017


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 <report at bugs.python.org>
<http://bugs.python.org/issue30087>
_______________________________________


More information about the New-bugs-announce mailing list