~ellisonbg/ipython/trunk-dev

« back to all changes in this revision

Viewing changes to IPython/deathrow/twshell.py

  • Committer: Brian Granger
  • Date: 2010-01-31 23:57:46 UTC
  • mfrom: (1109.1.113 ipython)
  • Revision ID: ellisonbg@gmail.com-20100131235746-rj81qa8klooepq2m
Merging from upstream trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
XXX - This module is missing proper docs.
4
4
"""
 
5
# Tell nose to skip this module
 
6
__test__ = {}
 
7
 
5
8
import sys
6
9
 
7
10
from twisted.internet import reactor, threads
8
11
 
9
 
from IPython.ipmaker import make_IPython
10
 
from IPython.iplib import InteractiveShell 
11
 
from IPython.ipstruct import Struct
 
12
from IPython.core.ipmaker import make_IPython
 
13
from IPython.core.iplib import InteractiveShell 
 
14
from IPython.utils.ipstruct import Struct
12
15
import Queue,thread,threading,signal
13
16
from signal import signal, SIGINT
14
 
from IPython.genutils import Term,warn,error,flag_calls, ask_yes_no
15
 
import shellglobals
 
17
from IPython.utils.io import Term, ask_yes_no
 
18
from IPython.utils.warn import warn, error
 
19
from IPython.utils.decorators import flag_calls
 
20
from IPython.core import shellglobals
16
21
 
17
22
def install_gtk2():
18
23
    """ Install gtk2 reactor, needs to be called bef """