122 # ensure that pending input is processed |
122 # ensure that pending input is processed |
123 rrdy, wrdy, xrdy = select.select( |
123 rrdy, wrdy, xrdy = select.select( |
124 [self.__dbgClient.readstream], [], [], 0.01) |
124 [self.__dbgClient.readstream], [], [], 0.01) |
125 |
125 |
126 if self.__dbgClient.readstream in rrdy: |
126 if self.__dbgClient.readstream in rrdy: |
127 self.__dbgClient.readReady(self.__dbgClient.readstream.fileno()) |
127 self.__dbgClient.readReady(self.__dbgClient.readstream) |
128 |
128 |
129 # |
129 # |
130 # eflag: noqa = M702 |
130 # eflag: noqa = M702 |