[gedit] Use consistent PEP-8 style in pythonconsole



commit 8cf5bac50c7976aa60d26076103646627f49313b
Author: Paolo Borelli <porelli gnome org>
Date:   Sun Jul 19 13:27:34 2009 +0200

    Use consistent PEP-8 style in pythonconsole

 plugins/pythonconsole/pythonconsole/__init__.py |   68 ++--
 plugins/pythonconsole/pythonconsole/config.py   |    5 +-
 plugins/pythonconsole/pythonconsole/console.py  |  576 ++++++++++++-----------
 3 files changed, 327 insertions(+), 322 deletions(-)
---
diff --git a/plugins/pythonconsole/pythonconsole/__init__.py b/plugins/pythonconsole/pythonconsole/__init__.py
index 135275b..995ea1d 100644
--- a/plugins/pythonconsole/pythonconsole/__init__.py
+++ b/plugins/pythonconsole/pythonconsole/__init__.py
@@ -30,42 +30,44 @@ import gedit
 from console import PythonConsole
 from config import PythonConsoleConfigDialog
 
+PYTHON_ICON = 'gnome-mime-text-x-python'
+
 class PythonConsolePlugin(gedit.Plugin):
-	def __init__(self):
-		gedit.Plugin.__init__(self)
-		self.dlg = None
-		
-	def activate(self, window):
-		console = PythonConsole(namespace = {'__builtins__' : __builtins__,
-		                                     'gedit' : gedit,
-		                                     'window' : window})
-		console.eval('print "You can access the main window through ' \
-		             '\'window\' :\\n%s" % window', False)
-		bottom = window.get_bottom_panel()
-		image = gtk.Image()
-		image.set_from_icon_name('gnome-mime-text-x-python',
-		                         gtk.ICON_SIZE_MENU)
-		bottom.add_item(console, _('Python Console'), image)
-		window.set_data('PythonConsolePluginInfo', console)
+    def __init__(self):
+        gedit.Plugin.__init__(self)
+        self.dlg = None
+
+    def activate(self, window):
+        console = PythonConsole(namespace = {'__builtins__' : __builtins__,
+                                             'gedit' : gedit,
+                                             'window' : window})
+        console.eval('print "You can access the main window through ' \
+                     '\'window\' :\\n%s" % window', False)
+        bottom = window.get_bottom_panel()
+        image = gtk.Image()
+        image.set_from_icon_name(PYTHON_ICON, gtk.ICON_SIZE_MENU)
+        bottom.add_item(console, _('Python Console'), image)
+        window.set_data('PythonConsolePluginInfo', console)
+
+    def deactivate(self, window):
+        console = window.get_data("PythonConsolePluginInfo")
+        console.stop()
+        window.set_data("PythonConsolePluginInfo", None)
+        bottom = window.get_bottom_panel()
+        bottom.remove_item(console)
 
-	def deactivate(self, window):
-		console = window.get_data("PythonConsolePluginInfo")
-		console.stop()
-		window.set_data("PythonConsolePluginInfo", None)
-		bottom = window.get_bottom_panel()
-		bottom.remove_item(console)
+    def is_configurable(self):
+        return True
 
-	def is_configurable(self):
-		return True
+    def create_configure_dialog(self):
+        if not self.dlg:
+            self.dlg = PythonConsoleConfigDialog(self.get_data_dir())
 
-	def create_configure_dialog(self):
-		if not self.dlg:
-			self.dlg = PythonConsoleConfigDialog(self.get_data_dir())
-		
-		dialog = self.dlg.dialog()
-		window = gedit.app_get_default().get_active_window()
-		if window:
-			dialog.set_transient_for(window)
+        dialog = self.dlg.dialog()
+        window = gedit.app_get_default().get_active_window()
+        if window:
+            dialog.set_transient_for(window)
 
-		return dialog
+        return dialog
 
+# ex:et:ts=4:
diff --git a/plugins/pythonconsole/pythonconsole/config.py b/plugins/pythonconsole/pythonconsole/config.py
index c047498..79c8616 100644
--- a/plugins/pythonconsole/pythonconsole/config.py
+++ b/plugins/pythonconsole/pythonconsole/config.py
@@ -38,7 +38,7 @@ GCONF_KEY_ERROR_COLOR = GCONF_KEY_BASE + '/error-color'
 DEFAULT_COMMAND_COLOR = '#314e6c' # Blue Shadow
 DEFAULT_ERROR_COLOR = '#990000' # Accent Red Dark
 
-class PythonConsoleConfig (object):
+class PythonConsoleConfig(object):
 
     def __init__(self):
         pass
@@ -69,7 +69,7 @@ class PythonConsoleConfig (object):
         v.set_string(value)
         gconf.client_get_default().set(key, v)
 
-class PythonConsoleConfigDialog (object):
+class PythonConsoleConfigDialog(object):
 
     def __init__(self, datadir):
         object.__init__(self)
@@ -118,3 +118,4 @@ class PythonConsoleConfigDialog (object):
     def on_colorbutton_error_color_set(self, colorbutton):
         self.config.color_error = colorbutton.get_color().to_string()
 
+# ex:et:ts=4:
diff --git a/plugins/pythonconsole/pythonconsole/console.py b/plugins/pythonconsole/pythonconsole/console.py
index 2d6a3c5..657db2c 100644
--- a/plugins/pythonconsole/pythonconsole/console.py
+++ b/plugins/pythonconsole/pythonconsole/console.py
@@ -8,7 +8,7 @@
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2, or (at your option)
 # any later version.
-# 
+#
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@@ -37,290 +37,292 @@ from config import PythonConsoleConfig
 __all__ = ('PythonConsole', 'OutFile')
 
 class PythonConsole(gtk.ScrolledWindow):
-	def __init__(self, namespace = {}):
-		gtk.ScrolledWindow.__init__(self)
-
-		self.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
-		self.set_shadow_type(gtk.SHADOW_IN)
-		self.view = gtk.TextView()
-		self.view.modify_font(pango.FontDescription('Monospace'))
-		self.view.set_editable(True)
-		self.view.set_wrap_mode(gtk.WRAP_WORD_CHAR)
-		self.add(self.view)
-		self.view.show()
-
-		buffer = self.view.get_buffer()
-		self.normal = buffer.create_tag("normal")
-		self.error  = buffer.create_tag("error")
-		self.command = buffer.create_tag("command")
-
-		PythonConsoleConfig.add_handler(self.apply_preferences)
-		self.apply_preferences()
-
-		self.__spaces_pattern = re.compile(r'^\s+')
-		self.namespace = namespace
-
-		self.block_command = False
-
-		# Init first line
-		buffer.create_mark("input-line", buffer.get_end_iter(), True)
-		buffer.insert(buffer.get_end_iter(), ">>> ")
-		buffer.create_mark("input", buffer.get_end_iter(), True)
-
-		# Init history
-		self.history = ['']
-		self.history_pos = 0
-		self.current_command = ''
-		self.namespace['__history__'] = self.history
-
-		# Set up hooks for standard output.
-		self.stdout = OutFile(self, sys.stdout.fileno(), self.normal)
-		self.stderr = OutFile(self, sys.stderr.fileno(), self.error)
-		
-		# Signals
-		self.view.connect("key-press-event", self.__key_press_event_cb)
-		buffer.connect("mark-set", self.__mark_set_cb)
-		
-	def apply_preferences(self, *args):
-		config = PythonConsoleConfig()
-		self.error.set_property("foreground", config.color_error)
-		self.command.set_property("foreground", config.color_command)
-		
-	def stop(self):
-		self.namespace = None
-
-	def __key_press_event_cb(self, view, event):
-		modifier_mask = gtk.accelerator_get_default_mod_mask()
-		event_state = event.state & modifier_mask
-
-		if event.keyval == gtk.keysyms.d and event_state == gtk.gdk.CONTROL_MASK:
-			self.destroy()
-
-		elif event.keyval == gtk.keysyms.Return and event_state == gtk.gdk.CONTROL_MASK:
-			# Get the command
-			buffer = view.get_buffer()
-			inp_mark = buffer.get_mark("input")
-			inp = buffer.get_iter_at_mark(inp_mark)
-			cur = buffer.get_end_iter()
-			line = buffer.get_text(inp, cur)
-			self.current_command = self.current_command + line + "\n"
-			self.history_add(line)
-
-			# Prepare the new line
-			cur = buffer.get_end_iter()
-			buffer.insert(cur, "\n... ")
-			cur = buffer.get_end_iter()
-			buffer.move_mark(inp_mark, cur)
-			
-			# Keep indentation of precendent line
-			spaces = re.match(self.__spaces_pattern, line)
-			if spaces is not None:
-				buffer.insert(cur, line[spaces.start() : spaces.end()])
-				cur = buffer.get_end_iter()
-				
-			buffer.place_cursor(cur)
-			gobject.idle_add(self.scroll_to_end)
-			return True
-		
-		elif event.keyval == gtk.keysyms.Return:
-			# Get the marks
-			buffer = view.get_buffer()
-			lin_mark = buffer.get_mark("input-line")
-			inp_mark = buffer.get_mark("input")
-
-			# Get the command line
-			inp = buffer.get_iter_at_mark(inp_mark)
-			cur = buffer.get_end_iter()
-			line = buffer.get_text(inp, cur)
-			self.current_command = self.current_command + line + "\n"
-			self.history_add(line)
-
-			# Make the line blue
-			lin = buffer.get_iter_at_mark(lin_mark)
-			buffer.apply_tag(self.command, lin, cur)
-			buffer.insert(cur, "\n")
-			
-			cur_strip = self.current_command.rstrip()
-
-			if cur_strip.endswith(":") \
-			or (self.current_command[-2:] != "\n\n" and self.block_command):
-				# Unfinished block command
-				self.block_command = True
-				com_mark = "... "
-			elif cur_strip.endswith("\\"):
-				com_mark = "... "
-			else:
-				# Eval the command
-				self.__run(self.current_command)
-				self.current_command = ''
-				self.block_command = False
-				com_mark = ">>> "
-
-			# Prepare the new line
-			cur = buffer.get_end_iter()
-			buffer.move_mark(lin_mark, cur)
-			buffer.insert(cur, com_mark)
-			cur = buffer.get_end_iter()
-			buffer.move_mark(inp_mark, cur)
-			buffer.place_cursor(cur)
-			gobject.idle_add(self.scroll_to_end)
-			return True
-
-		elif event.keyval == gtk.keysyms.KP_Down or event.keyval == gtk.keysyms.Down:
-			# Next entry from history
-			view.emit_stop_by_name("key_press_event")
-			self.history_down()
-			gobject.idle_add(self.scroll_to_end)
-			return True
-
-		elif event.keyval == gtk.keysyms.KP_Up or event.keyval == gtk.keysyms.Up:
-			# Previous entry from history
-			view.emit_stop_by_name("key_press_event")
-			self.history_up()
-			gobject.idle_add(self.scroll_to_end)
-			return True
-
-		elif event.keyval == gtk.keysyms.KP_Left or event.keyval == gtk.keysyms.Left or \
-		     event.keyval == gtk.keysyms.BackSpace:
-			buffer = view.get_buffer()
-			inp = buffer.get_iter_at_mark(buffer.get_mark("input"))
-			cur = buffer.get_iter_at_mark(buffer.get_insert())
-			if inp.compare(cur) == 0:
-				if not event_state:
-					buffer.place_cursor(inp)
-				return True
-			return False
-
-		elif (event.keyval == gtk.keysyms.KP_Home or event.keyval == gtk.keysyms.Home) and \
-		     event_state == event_state & (gtk.gdk.SHIFT_MASK|gtk.gdk.CONTROL_MASK):
-			# Go to the begin of the command instead of the begin of the line
-			buffer = view.get_buffer()
-			inp = buffer.get_iter_at_mark(buffer.get_mark("input"))
-			if event_state & gtk.gdk.SHIFT_MASK:
-				buffer.move_mark_by_name("insert", inp)
-			else:
-				buffer.place_cursor(inp)
-			return True
-		
-	def __mark_set_cb(self, buffer, iter, name):
-		input = buffer.get_iter_at_mark(buffer.get_mark("input"))
-		pos   = buffer.get_iter_at_mark(buffer.get_insert())
-		self.view.set_editable(pos.compare(input) != -1)
-
-	def get_command_line(self):
-		buffer = self.view.get_buffer()
-		inp = buffer.get_iter_at_mark(buffer.get_mark("input"))
-		cur = buffer.get_end_iter()
-		return buffer.get_text(inp, cur)
-	
-	def set_command_line(self, command):
-		buffer = self.view.get_buffer()
-		mark = buffer.get_mark("input")
-		inp = buffer.get_iter_at_mark(mark)
-		cur = buffer.get_end_iter()
-		buffer.delete(inp, cur)
-		buffer.insert(inp, command)
-		self.view.grab_focus()
-	
-	def history_add(self, line):
-		if line.strip() != '':
-			self.history_pos = len(self.history)
-			self.history[self.history_pos - 1] = line
-			self.history.append('')
-	
-	def history_up(self):
-		if self.history_pos > 0:
-			self.history[self.history_pos] = self.get_command_line()
-			self.history_pos = self.history_pos - 1
-			self.set_command_line(self.history[self.history_pos])
-			
-	def history_down(self):
-		if self.history_pos < len(self.history) - 1:
-			self.history[self.history_pos] = self.get_command_line()
-			self.history_pos = self.history_pos + 1
-			self.set_command_line(self.history[self.history_pos])
-	
-	def scroll_to_end(self):
-		iter = self.view.get_buffer().get_end_iter()
-		self.view.scroll_to_iter(iter, 0.0)
-		return False
-
-	def write(self, text, tag = None):
-		buffer = self.view.get_buffer()
-		if tag is None:
-			buffer.insert(buffer.get_end_iter(), text)
-		else:
-			buffer.insert_with_tags(buffer.get_end_iter(), text, tag)
-		gobject.idle_add(self.scroll_to_end)
- 	
- 	def eval(self, command, display_command = False):
-		buffer = self.view.get_buffer()
-		lin = buffer.get_mark("input-line")
-		buffer.delete(buffer.get_iter_at_mark(lin),
-		              buffer.get_end_iter())
- 
-		if isinstance(command, list) or isinstance(command, tuple):
- 			for c in command:
-		 		if display_command:
-		 			self.write(">>> " + c + "\n", self.command)
- 				self.__run(c)
-		else:
-	 		if display_command:
-	 			self.write(">>> " + c + "\n", self.command)
-			self.__run(command) 
-
-		cur = buffer.get_end_iter()
-		buffer.move_mark_by_name("input-line", cur)
-		buffer.insert(cur, ">>> ")
-		cur = buffer.get_end_iter()
-		buffer.move_mark_by_name("input", cur)
-		self.view.scroll_to_iter(buffer.get_end_iter(), 0.0)
-	
- 	def __run(self, command):
-		sys.stdout, self.stdout = self.stdout, sys.stdout
-		sys.stderr, self.stderr = self.stderr, sys.stderr
-
-		# eval and exec are broken in how they deal with utf8-encoded
-		# strings so we have to explicitly decode the command before
-		# passing it along
-		command = command.decode('utf8')
-
-		try:
-			try:
-				r = eval(command, self.namespace, self.namespace)
-				if r is not None:
-					print `r`
-			except SyntaxError:
-				exec command in self.namespace
-		except:
-			if hasattr(sys, 'last_type') and sys.last_type == SystemExit:
-				self.destroy()
-			else:
-				traceback.print_exc()
-
-		sys.stdout, self.stdout = self.stdout, sys.stdout
-		sys.stderr, self.stderr = self.stderr, sys.stderr
-
-	def destroy(self):
-		pass
-		#gtk.ScrolledWindow.destroy(self)
-		
+    def __init__(self, namespace = {}):
+        gtk.ScrolledWindow.__init__(self)
+
+        self.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
+        self.set_shadow_type(gtk.SHADOW_IN)
+        self.view = gtk.TextView()
+        self.view.modify_font(pango.FontDescription('Monospace'))
+        self.view.set_editable(True)
+        self.view.set_wrap_mode(gtk.WRAP_WORD_CHAR)
+        self.add(self.view)
+        self.view.show()
+
+        buffer = self.view.get_buffer()
+        self.normal = buffer.create_tag("normal")
+        self.error  = buffer.create_tag("error")
+        self.command = buffer.create_tag("command")
+
+        PythonConsoleConfig.add_handler(self.apply_preferences)
+        self.apply_preferences()
+
+        self.__spaces_pattern = re.compile(r'^\s+')
+        self.namespace = namespace
+
+        self.block_command = False
+
+        # Init first line
+        buffer.create_mark("input-line", buffer.get_end_iter(), True)
+        buffer.insert(buffer.get_end_iter(), ">>> ")
+        buffer.create_mark("input", buffer.get_end_iter(), True)
+
+        # Init history
+        self.history = ['']
+        self.history_pos = 0
+        self.current_command = ''
+        self.namespace['__history__'] = self.history
+
+        # Set up hooks for standard output.
+        self.stdout = OutFile(self, sys.stdout.fileno(), self.normal)
+        self.stderr = OutFile(self, sys.stderr.fileno(), self.error)
+
+        # Signals
+        self.view.connect("key-press-event", self.__key_press_event_cb)
+        buffer.connect("mark-set", self.__mark_set_cb)
+
+    def apply_preferences(self, *args):
+        config = PythonConsoleConfig()
+        self.error.set_property("foreground", config.color_error)
+        self.command.set_property("foreground", config.color_command)
+
+    def stop(self):
+        self.namespace = None
+
+    def __key_press_event_cb(self, view, event):
+        modifier_mask = gtk.accelerator_get_default_mod_mask()
+        event_state = event.state & modifier_mask
+
+        if event.keyval == gtk.keysyms.d and event_state == gtk.gdk.CONTROL_MASK:
+            self.destroy()
+
+        elif event.keyval == gtk.keysyms.Return and event_state == gtk.gdk.CONTROL_MASK:
+            # Get the command
+            buffer = view.get_buffer()
+            inp_mark = buffer.get_mark("input")
+            inp = buffer.get_iter_at_mark(inp_mark)
+            cur = buffer.get_end_iter()
+            line = buffer.get_text(inp, cur)
+            self.current_command = self.current_command + line + "\n"
+            self.history_add(line)
+
+            # Prepare the new line
+            cur = buffer.get_end_iter()
+            buffer.insert(cur, "\n... ")
+            cur = buffer.get_end_iter()
+            buffer.move_mark(inp_mark, cur)
+
+            # Keep indentation of precendent line
+            spaces = re.match(self.__spaces_pattern, line)
+            if spaces is not None:
+                buffer.insert(cur, line[spaces.start() : spaces.end()])
+                cur = buffer.get_end_iter()
+
+            buffer.place_cursor(cur)
+            gobject.idle_add(self.scroll_to_end)
+            return True
+
+        elif event.keyval == gtk.keysyms.Return:
+            # Get the marks
+            buffer = view.get_buffer()
+            lin_mark = buffer.get_mark("input-line")
+            inp_mark = buffer.get_mark("input")
+
+            # Get the command line
+            inp = buffer.get_iter_at_mark(inp_mark)
+            cur = buffer.get_end_iter()
+            line = buffer.get_text(inp, cur)
+            self.current_command = self.current_command + line + "\n"
+            self.history_add(line)
+
+            # Make the line blue
+            lin = buffer.get_iter_at_mark(lin_mark)
+            buffer.apply_tag(self.command, lin, cur)
+            buffer.insert(cur, "\n")
+
+            cur_strip = self.current_command.rstrip()
+
+            if cur_strip.endswith(":") \
+            or (self.current_command[-2:] != "\n\n" and self.block_command):
+                # Unfinished block command
+                self.block_command = True
+                com_mark = "... "
+            elif cur_strip.endswith("\\"):
+                com_mark = "... "
+            else:
+                # Eval the command
+                self.__run(self.current_command)
+                self.current_command = ''
+                self.block_command = False
+                com_mark = ">>> "
+
+            # Prepare the new line
+            cur = buffer.get_end_iter()
+            buffer.move_mark(lin_mark, cur)
+            buffer.insert(cur, com_mark)
+            cur = buffer.get_end_iter()
+            buffer.move_mark(inp_mark, cur)
+            buffer.place_cursor(cur)
+            gobject.idle_add(self.scroll_to_end)
+            return True
+
+        elif event.keyval == gtk.keysyms.KP_Down or event.keyval == gtk.keysyms.Down:
+            # Next entry from history
+            view.emit_stop_by_name("key_press_event")
+            self.history_down()
+            gobject.idle_add(self.scroll_to_end)
+            return True
+
+        elif event.keyval == gtk.keysyms.KP_Up or event.keyval == gtk.keysyms.Up:
+            # Previous entry from history
+            view.emit_stop_by_name("key_press_event")
+            self.history_up()
+            gobject.idle_add(self.scroll_to_end)
+            return True
+
+        elif event.keyval == gtk.keysyms.KP_Left or event.keyval == gtk.keysyms.Left or \
+             event.keyval == gtk.keysyms.BackSpace:
+            buffer = view.get_buffer()
+            inp = buffer.get_iter_at_mark(buffer.get_mark("input"))
+            cur = buffer.get_iter_at_mark(buffer.get_insert())
+            if inp.compare(cur) == 0:
+                if not event_state:
+                    buffer.place_cursor(inp)
+                return True
+            return False
+
+        elif (event.keyval == gtk.keysyms.KP_Home or event.keyval == gtk.keysyms.Home) and \
+             event_state == event_state & (gtk.gdk.SHIFT_MASK|gtk.gdk.CONTROL_MASK):
+            # Go to the begin of the command instead of the begin of the line
+            buffer = view.get_buffer()
+            inp = buffer.get_iter_at_mark(buffer.get_mark("input"))
+            if event_state & gtk.gdk.SHIFT_MASK:
+                buffer.move_mark_by_name("insert", inp)
+            else:
+                buffer.place_cursor(inp)
+            return True
+
+    def __mark_set_cb(self, buffer, iter, name):
+        input = buffer.get_iter_at_mark(buffer.get_mark("input"))
+        pos   = buffer.get_iter_at_mark(buffer.get_insert())
+        self.view.set_editable(pos.compare(input) != -1)
+
+    def get_command_line(self):
+        buffer = self.view.get_buffer()
+        inp = buffer.get_iter_at_mark(buffer.get_mark("input"))
+        cur = buffer.get_end_iter()
+        return buffer.get_text(inp, cur)
+
+    def set_command_line(self, command):
+        buffer = self.view.get_buffer()
+        mark = buffer.get_mark("input")
+        inp = buffer.get_iter_at_mark(mark)
+        cur = buffer.get_end_iter()
+        buffer.delete(inp, cur)
+        buffer.insert(inp, command)
+        self.view.grab_focus()
+
+    def history_add(self, line):
+        if line.strip() != '':
+            self.history_pos = len(self.history)
+            self.history[self.history_pos - 1] = line
+            self.history.append('')
+
+    def history_up(self):
+        if self.history_pos > 0:
+            self.history[self.history_pos] = self.get_command_line()
+            self.history_pos = self.history_pos - 1
+            self.set_command_line(self.history[self.history_pos])
+
+    def history_down(self):
+        if self.history_pos < len(self.history) - 1:
+            self.history[self.history_pos] = self.get_command_line()
+            self.history_pos = self.history_pos + 1
+            self.set_command_line(self.history[self.history_pos])
+
+    def scroll_to_end(self):
+        iter = self.view.get_buffer().get_end_iter()
+        self.view.scroll_to_iter(iter, 0.0)
+        return False
+
+    def write(self, text, tag = None):
+        buffer = self.view.get_buffer()
+        if tag is None:
+            buffer.insert(buffer.get_end_iter(), text)
+        else:
+            buffer.insert_with_tags(buffer.get_end_iter(), text, tag)
+        gobject.idle_add(self.scroll_to_end)
+
+    def eval(self, command, display_command = False):
+        buffer = self.view.get_buffer()
+        lin = buffer.get_mark("input-line")
+        buffer.delete(buffer.get_iter_at_mark(lin),
+                      buffer.get_end_iter())
+
+        if isinstance(command, list) or isinstance(command, tuple):
+            for c in command:
+                if display_command:
+                    self.write(">>> " + c + "\n", self.command)
+                self.__run(c)
+        else:
+            if display_command:
+                self.write(">>> " + c + "\n", self.command)
+            self.__run(command)
+
+        cur = buffer.get_end_iter()
+        buffer.move_mark_by_name("input-line", cur)
+        buffer.insert(cur, ">>> ")
+        cur = buffer.get_end_iter()
+        buffer.move_mark_by_name("input", cur)
+        self.view.scroll_to_iter(buffer.get_end_iter(), 0.0)
+
+    def __run(self, command):
+        sys.stdout, self.stdout = self.stdout, sys.stdout
+        sys.stderr, self.stderr = self.stderr, sys.stderr
+
+        # eval and exec are broken in how they deal with utf8-encoded
+        # strings so we have to explicitly decode the command before
+        # passing it along
+        command = command.decode('utf8')
+
+        try:
+            try:
+                r = eval(command, self.namespace, self.namespace)
+                if r is not None:
+                    print `r`
+            except SyntaxError:
+                exec command in self.namespace
+        except:
+            if hasattr(sys, 'last_type') and sys.last_type == SystemExit:
+                self.destroy()
+            else:
+                traceback.print_exc()
+
+        sys.stdout, self.stdout = self.stdout, sys.stdout
+        sys.stderr, self.stderr = self.stderr, sys.stderr
+
+    def destroy(self):
+        pass
+        #gtk.ScrolledWindow.destroy(self)
+
 class OutFile:
-	"""A fake output file object. It sends output to a TK test widget,
-	and if asked for a file number, returns one set on instance creation"""
-	def __init__(self, console, fn, tag):
-		self.fn = fn
-		self.console = console
-		self.tag = tag
-	def close(self):         pass
-	def flush(self):         pass
-	def fileno(self):        return self.fn
-	def isatty(self):        return 0
-	def read(self, a):       return ''
-	def readline(self):      return ''
-	def readlines(self):     return []
-	def write(self, s):      self.console.write(s, self.tag)
-	def writelines(self, l): self.console.write(l, self.tag)
-	def seek(self, a):       raise IOError, (29, 'Illegal seek')
-	def tell(self):          raise IOError, (29, 'Illegal seek')
-	truncate = tell
+    """A fake output file object. It sends output to a TK test widget,
+    and if asked for a file number, returns one set on instance creation"""
+    def __init__(self, console, fn, tag):
+        self.fn = fn
+        self.console = console
+        self.tag = tag
+    def close(self):         pass
+    def flush(self):         pass
+    def fileno(self):        return self.fn
+    def isatty(self):        return 0
+    def read(self, a):       return ''
+    def readline(self):      return ''
+    def readlines(self):     return []
+    def write(self, s):      self.console.write(s, self.tag)
+    def writelines(self, l): self.console.write(l, self.tag)
+    def seek(self, a):       raise IOError, (29, 'Illegal seek')
+    def tell(self):          raise IOError, (29, 'Illegal seek')
+    truncate = tell
+
+# ex:et:ts=4:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]