When developing and debugging with python/ipython repl, at some point I\'d like to dump all the local variables in a function to the workspace to see what\'s going on. Suppo
you could use whos in ipython. vars() in python environment.
whos
vars()