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 have a function for this:
print locals()
and globals() for global variables
globals()