##// END OF EJS Templates
- Final commits for 0.8.0 tag....
- Final commits for 0.8.0 tag. - Missing part of win32 install patch by N. Pernetty that I'd inadvertedly not applied. - Unicode fixes for emacs under win32 - Small bug fix (recently introduced) in pycolorize. - Improve handling of history file after %run, reduces memory usage.

File last commit:

r420:a9e64d26
r595:020f0804
Show More
ipython.py
12 lines | 415 B | text/x-python | PythonLexer
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""IPython -- An enhanced Interactive Python
The actual ipython script to be installed with 'python setup.py install' is
in './scripts' directory. This file is here (ipython source root directory)
to facilitate non-root 'zero-installation' (just copy the source tree
somewhere and run ipython.py) and development. """
import IPython
IPython.Shell.start().mainloop()