##// END OF EJS Templates
Add new %debug magic, activates the interactive debugger immediately on the...
Add new %debug magic, activates the interactive debugger immediately on the last traceback without having to rerun any code.

File last commit:

r181:54d3ddad
r470:604e5837
Show More
test_cd.ipy
6 lines | 80 B | text/plain | TextLexer
import os
cd /
assert os.getcwd() == '/'
%cd /tmp
assert os.getcwd() == '/tmp'