--- a/Debugger/DebuggerInterfacePython3.py Mon Aug 09 15:36:47 2010 +0200 +++ b/Debugger/DebuggerInterfacePython3.py Mon Aug 09 15:49:03 2010 +0200 @@ -352,8 +352,8 @@ if self.qsock is not None: return False - self.connect(sock, SIGNAL('disconnected()'), self.debugServer.startClient) - self.connect(sock, SIGNAL('readyRead()'), self.__parseClientLine) + sock.disconnected[()].connect(self.debugServer.startClient) + sock.readyRead[()].connect(self.__parseClientLine) self.qsock = sock @@ -384,7 +384,7 @@ # do not want any slots called during shutdown self.disconnect(self.qsock, SIGNAL('disconnected()'), self.debugServer.startClient) - self.disconnect(self.qsock, SIGNAL('readyRead()'), self.__parseClientLine) + self.qsock.readyRead[()].disconnect(self.__parseClientLine) # close down socket, and shut down client as well. self.__sendCommand('{0}\n'.format(RequestShutdown)) @@ -944,4 +944,4 @@ if self.qsock is not None: self.qsock.write(cmd.encode('utf8', 'backslashreplace')) else: - self.queue.append(cmd) + self.queue.append(cmd) \ No newline at end of file