##// END OF EJS Templates
Move IPython.frontend.zmqterminal to IPython.frontend.terminal.console
MinRK -
Show More
1 NO CONTENT: file renamed from IPython/frontend/zmqterminal/__init__.py to IPython/frontend/terminal/console/__init__.py
NO CONTENT: file renamed from IPython/frontend/zmqterminal/__init__.py to IPython/frontend/terminal/console/__init__.py
@@ -29,7 +29,7 b' from IPython.frontend.kernelmixinapp import ('
29 IPythonMixinConsoleApp, app_aliases, app_flags, aliases, app_aliases, flags
29 IPythonMixinConsoleApp, app_aliases, app_flags, aliases, app_aliases, flags
30 )
30 )
31
31
32 from IPython.frontend.zmqterminal.interactiveshell import ZMQTerminalInteractiveShell
32 from IPython.frontend.terminal.console.interactiveshell import ZMQTerminalInteractiveShell
33
33
34 #-----------------------------------------------------------------------------
34 #-----------------------------------------------------------------------------
35 # Globals
35 # Globals
1 NO CONTENT: file renamed from IPython/frontend/zmqterminal/completer.py to IPython/frontend/terminal/console/completer.py
NO CONTENT: file renamed from IPython/frontend/zmqterminal/completer.py to IPython/frontend/terminal/console/completer.py
@@ -30,7 +30,7 b' import rlcompleter'
30 from IPython.external.argparse import ArgumentParser
30 from IPython.external.argparse import ArgumentParser
31 from IPython.core.inputsplitter import IPythonInputSplitter
31 from IPython.core.inputsplitter import IPythonInputSplitter
32 from IPython.zmq.blockingkernelmanager import BlockingKernelManager as KernelManager
32 from IPython.zmq.blockingkernelmanager import BlockingKernelManager as KernelManager
33 from IPython.frontend.zmqterminal.completer import ClientCompleter2p
33 from IPython.frontend.terminal.console.completer import ClientCompleter2p
34
34
35 #-----------------------------------------------------------------------------
35 #-----------------------------------------------------------------------------
36 # Network Constants
36 # Network Constants
@@ -27,7 +27,7 b' from IPython.utils.warn import warn, error, fatal'
27 from IPython.utils import io
27 from IPython.utils import io
28
28
29 from IPython.frontend.terminal.interactiveshell import TerminalInteractiveShell
29 from IPython.frontend.terminal.interactiveshell import TerminalInteractiveShell
30 from IPython.frontend.zmqterminal.completer import ZMQCompleter
30 from IPython.frontend.terminal.console.completer import ZMQCompleter
31
31
32
32
33 class ZMQTerminalInteractiveShell(TerminalInteractiveShell):
33 class ZMQTerminalInteractiveShell(TerminalInteractiveShell):
@@ -222,7 +222,7 b' class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):'
222 kernel = ("IPython.zmq.ipkernel.IPKernelApp",
222 kernel = ("IPython.zmq.ipkernel.IPKernelApp",
223 "Start a kernel without an attached frontend."
223 "Start a kernel without an attached frontend."
224 ),
224 ),
225 console=('IPython.frontend.zmqterminal.app.ZMQTerminalIPythonApp',
225 console=('IPython.frontend.terminal.console.app.ZMQTerminalIPythonApp',
226 """Launch the IPython terminal-based Console."""
226 """Launch the IPython terminal-based Console."""
227 ),
227 ),
228 ))
228 ))
General Comments 0
You need to be logged in to leave comments. Login now