##// END OF EJS Templates
- Automatically prepend 'if 1:' to user input that starts with whitespace,...
- Automatically prepend 'if 1:' to user input that starts with whitespace, for interactive convenience. After a patch by Bo Peng. - Revert some of the sys.path recent changes which were causing problems, and implement a more robust version inside safe_execfile().

File last commit:

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