Skip to content
Advertisement

Tag: ipdb

How to use list() when in an ipdb session?

In a Python 3.5.2 script where I have, e.g., The interpreter hits these lines and drops me into an ipdb session. Understandably, ipdb has limited functionality compared to an iPython interpreter session (e.g., no magic commands). However, I’m surprised to find that some Python built-ins don’t work, namely list(). I’m guessing there is a name collision between the built-in function

Advertisement