File: remote_shell_controller.py

package info (click to toggle)
python-envisageplugins 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,616 kB
  • ctags: 1,970
  • sloc: python: 7,047; makefile: 11; sh: 11; lisp: 1
file content (33 lines) | stat: -rw-r--r-- 884 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""
A client controlling a remote shell.
"""

# Enthought library imports
from enthought.traits.api import implements

# Local imports
from enthought.plugins.remote_editor.communication.client import Client
from i_remote_shell import IRemoteShell


class RemoteShellController(Client):
    """ A Client used to control a remote shell.
    """
    implements(IRemoteShell)

    #------------------------------------------------------
    # Client interface
    #------------------------------------------------------

    self_type = "python_editor"
    other_type = "python_shell"
    
    #------------------------------------------------------
    # RemoteShell interface
    #------------------------------------------------------

    def run_file(self, path):
        self.send_command('run_file', path)

    def run_text(self, text):
        self.send_command('run_text', text)