181 """ |
181 """ |
182 return True |
182 return True |
183 |
183 |
184 def readData(self, maxlen): |
184 def readData(self, maxlen): |
185 """ |
185 """ |
186 Protected method to retrieve data from the reply object. |
186 Public method to retrieve data from the reply object. |
187 |
187 |
188 @param maxlen maximum number of bytes to read (integer) |
188 @param maxlen maximum number of bytes to read (integer) |
189 @return string containing the data (bytes) |
189 @return string containing the data (bytes) |
190 """ |
190 """ |
191 if self.__content.size(): |
191 if self.__content.size(): |