This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Christoph Zimmermann
Recipients Christoph Zimmermann
Date 2017-04-17.06:15:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1492409746.73.0.239584999276.issue30087@psf.upfronthosting.co.za>
In-reply-to
Content
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)'
History
Date User Action Args
2017-04-17 06:15:46Christoph Zimmermannsetrecipients: + Christoph Zimmermann
2017-04-17 06:15:46Christoph Zimmermannsetmessageid: <1492409746.73.0.239584999276.issue30087@psf.upfronthosting.co.za>
2017-04-17 06:15:46Christoph Zimmermannlinkissue30087 messages
2017-04-17 06:15:46Christoph Zimmermanncreate