mailr14101 - /branches/gui_testing/gui/controller.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on August 04, 2011 - 10:22:
Author: bugman
Date: Thu Aug  4 10:22:57 2011
New Revision: 14101

URL: http://svn.gna.org/viewcvs/relax?rev=14101&view=rev
Log:
In debugging and test mode, the relax controller now writes back to the 
original IO streams.

This is instead of sys.__stdout__ and sys.__stderr__.


Modified:
    branches/gui_testing/gui/controller.py

Modified: branches/gui_testing/gui/controller.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/controller.py?rev=14101&r1=14100&r2=14101&view=diff
==============================================================================
--- branches/gui_testing/gui/controller.py (original)
+++ branches/gui_testing/gui/controller.py Thu Aug  4 10:22:57 2011
@@ -95,8 +95,8 @@
         sizer.Add(self.log_panel, 1, wx.EXPAND|wx.ALL, 0)
 
         # IO redirection.
-        sys.stdout = Redirect_text(self.log_panel, self.log_queue, stream=0)
-        sys.stderr = Redirect_text(self.log_panel, self.log_queue, stream=1)
+        sys.stdout = Redirect_text(self.log_panel, self.log_queue, 
orig_io=sys.stdout, stream=0)
+        sys.stderr = Redirect_text(self.log_panel, self.log_queue, 
orig_io=sys.stderr, stream=1)
 
         # Initial update of the controller.
         self.update_controller()
@@ -656,13 +656,15 @@
 class Redirect_text(object):
     """The IO redirection to text control object."""
 
-    def __init__(self, control, log_queue, stream=0):
+    def __init__(self, control, log_queue, orig_io, stream=0):
         """Set up the text redirection object.
 
         @param control:         The text control object to redirect IO to.
         @type control:          wx.TextCtrl instance
         @param log_queue:       The queue of log messages.
         @type log_queue:        Queue.Queue instance
+        @param orig_io:         The original IO stream, used for debugging 
and the test suite.
+        @type orig_io:          file
         @keyword stream:        The type of steam (0 for STDOUT and 1 for 
STDERR).
         @type stream:           int
         """
@@ -670,6 +672,7 @@
         # Store the args.
         self.control = control
         self.log_queue = log_queue
+        self.orig_io = orig_io
         self.stream = stream
 
 
@@ -681,11 +684,8 @@
         """
 
         # Debugging print out to the terminal.
-        if status.debug:
-            if self.stream == 0:
-                sys.__stdout__.write(string)
-            else:
-                sys.__stderr__.write(string)
+        if status.debug or status.test_mode:
+            self.orig_io.write(string)
 
         # Add the text to the queue.
         self.log_queue.put([string, self.stream])




Related Messages


Powered by MHonArc, Updated Thu Aug 04 10:40:02 2011