##// END OF EJS Templates
Emergency fix for py3 breakage introduced in 576f6f (merge of #1538)...
Emergency fix for py3 breakage introduced in 576f6f (merge of #1538) Unicode literals (u'foo') aren't valid in Python 3.{1,2} (they will be again in 3.3, and I failed to notice this. This is a quick fix, will discuss further on-list. But I want master to remain working for py3 users.

File last commit:

r2760:afe1263a
r6446:74c10b3c
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()