Technicality
· 3RD OF NOVEMBER, THE YEAR 2006USING IPYTHON
IPython is an enhanced interactive shell for Python, and it is very cool.
Debugging
Run a script through the Python debugger (pdb)
run -d script.py
Run a script through pdb w/ a breakpoint at line 10
run -d -b10 script.py
List all variables in the local namespace
whos
Clear all variables in the local namespace
reset
Recusrively reload a module and its submodules
dreload module

NO COMMENTS YET