##// END OF EJS Templates
more unique filename for test...
more unique filename for test I actually had a filename named /tmp/foo and this test failed, because it was owned by a different user, hence writing to it (and deleting it) failed. Using /tmp/foo_iptest makes it a bit more unique, and a lot less likely to be on a given system.

File last commit:

r2760:afe1263a
r10915:0ef9e081
Show More
ipython-wx
11 lines | 320 B | text/plain | TextLexer
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""wxIPython -- An enhanced Interactive Python GUI fonrtend
This script starts the Wx graphical frontend.
This is experimental so far.
Currently it support only ipython0 instance. Will be upgraded to ipython1 one.
"""
from IPython.gui.wx import wxIPython
wxIPython.main()