##// END OF EJS Templates
- add support for PyCrust-style _getAttributeNames magic method. Closes #50....
- add support for PyCrust-style _getAttributeNames magic method. Closes #50. - don't delete exit/quit. Closes #55. - rename 'with' to 'with_obj' to avoid problems in python 2.5. Closes #53. - fix FakeModule, which also closes #59. - add -n option to %edit. - fix various other crashes reported by the automatic crash handler.

File last commit:

r103:b3db6307
r292:8dcaaddb
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()