changeset 16687 | e34106fa0dc3 |
parent 16683 | 525fdb738975 |
child 17425 | e95ec38f86b0 |
16686:67964cda8701 | 16687:e34106fa0dc3 |
---|---|
164 |
164 |
165 data = self.client.read(size) |
165 data = self.client.read(size) |
166 |
166 |
167 # is the other end closed? |
167 # is the other end closed? |
168 if not data: |
168 if not data: |
169 raise EOFError() |
169 raise EOFError |
170 |
170 |
171 return data |
171 return data |
172 |
172 |
173 def runcommand(self): |
173 def runcommand(self): |
174 """ reads a list of \0 terminated arguments, executes |
174 """ reads a list of \0 terminated arguments, executes |