##// END OF EJS Templates
Minor doc fixes for the 0.9 release....
Minor doc fixes for the 0.9 release. IPython is called "ipython" on PyPI, not "IPython". I have fixes the easy_install directions and added a new quickstart section to the install docs.

File last commit:

r856:50044c43
r1729:9b164c75
Show More
test_cd.ipy
18 lines | 289 B | text/plain | TextLexer
# assumes there is /tmp and /opt
def curpath():
cwd = os.path.splitdrive(os.getcwd())[1].replace('\\','/')
print cwd
return cwd
import os
cd /
assert curpath() == '/'
%cd /tmp
assert curpath() == '/tmp'
pushd /opt
assert curpath() == '/opt'
popd
assert curpath() == '/tmp'