Removed the TODO comments for the 6.1 line of development. 6_1_x

Wed, 04 Nov 2015 13:56:56 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 04 Nov 2015 13:56:56 +0100
branch
6_1_x
changeset 4533
9178dcb04f76
parent 4532
d12adfaf9d1d
child 4534
037e8bb132fe

Removed the TODO comments for the 6.1 line of development.

Debugger/DebugServer.py file | annotate | diff | comparison | revisions
UI/UserInterface.py file | annotate | diff | comparison | revisions
--- a/Debugger/DebugServer.py	Wed Nov 04 13:51:39 2015 +0100
+++ b/Debugger/DebugServer.py	Wed Nov 04 13:56:56 2015 +0100
@@ -282,10 +282,6 @@
         """
         Public slot to handle the preferencesChanged signal.
         """
-        # TODO: eric 6.2: change this to call all registered debugger
-        #       interfaces getRegistryData() method ignoring the client
-        #       language and update the client capabilities and client
-        #       associations.
         self.__registerDebuggerInterfaces()
         
     def __registerDebuggerInterfaces(self):
@@ -294,17 +290,6 @@
         """
         self.__clientCapabilities = {}
         self.__clientAssociations = {}
-        # TODO: eric 6.2: Add a debugger interface registry dictionary with the
-        #       debugger name (language) as a key
-        # TODO: eric 6.2: Add a registerDebuggerInterface() method taking a
-        #       name and a getRegistryData() method. This method should be
-        #       called when a debugger backend plug-in is activated.
-        #       getRegistryData() shall return the client language, the client
-        #       capabilities, the list of associated file extensions and a
-        #       function reference to create the debugger interface (see
-        #       __createDebuggerInterface() below
-        # TODO: eric 6.2: Add an unregisterDebuggerInterface() method with a
-        #       name as parameter to revert the above.
         
         for interface in DebuggerInterfaces:
             modName = "Debugger.{0}".format(interface)
@@ -364,8 +349,6 @@
         
         @param clientType type of the client interface to be created (string)
         """
-        # TODO: eric 6.2: make debugger interfaces be registered in order to
-        # allow to implement a debugger backend as a plug-in.
         if self.lastClientType != self.clientType or clientType is not None:
             if clientType is None:
                 clientType = self.clientType
--- a/UI/UserInterface.py	Wed Nov 04 13:51:39 2015 +0100
+++ b/UI/UserInterface.py	Wed Nov 04 13:56:56 2015 +0100
@@ -510,9 +510,8 @@
         self.inCloseEevent = False
 
         # now redirect stdout and stderr
-        # TODO: release - reenable redirection
-##        sys.stdout = self.stdout
-##        sys.stderr = self.stderr
+        sys.stdout = self.stdout
+        sys.stderr = self.stderr
 
         # now fire up the single application server
         if Preferences.getUI("SingleApplicationMode"):

eric ide

mercurial