##// END OF EJS Templates
Merge pull request #1726 from minrk/cfgeval...
Merge pull request #1726 from minrk/cfgeval use eval for configurable command-line args instead of exec eval has more appropriately strict syntax, which prevents things like 'a=5' from being interpreted as Python code to be run. Previously-failing test included.

File last commit:

r2760:afe1263a
r6758:e395f6e5 merge
Show More
ipythonx
11 lines | 231 B | text/plain | TextLexer
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""IPythonX -- An enhanced Interactive Python
This script starts the Wx graphical frontend. This is experimental so
far.
"""
from IPython.frontend.wx import ipythonx
ipythonx.main()