(self)
| 103 | return True |
| 104 | |
| 105 | def _onNewConnection(self): |
| 106 | if self._socketIn: |
| 107 | self._socketIn.readyRead.disconnect(self._onReadyRead) |
| 108 | self._socketIn = self._socketServer.nextPendingConnection() |
| 109 | if not self._socketIn: |
| 110 | return |
| 111 | self._socketIn.readyRead.connect(self._onReadyRead) |
| 112 | if self._activateOnMessage: |
| 113 | self.activateWindow() |
| 114 | |
| 115 | def _onReadyRead(self): |
| 116 | while 1: |
nothing calls this directly
no test coverage detected