I have noticed that some of the ipython functionality is not available from the debugger. For example, the ? and ?? operands for variable introspection don't work:
e.g.
ipython> run my_script.py
ipython> %debug
ipdb> foo?
*** SyntaxError: invalid syntax(<stdin>, line1)
Is there a way to bring the full ipython functionality to the debugger?