146 """ |
146 """ |
147 return True |
147 return True |
148 |
148 |
149 def readData(self, maxlen): |
149 def readData(self, maxlen): |
150 """ |
150 """ |
151 Protected method to retrieve data from the reply object. |
151 Public method to retrieve data from the reply object. |
152 |
152 |
153 @param maxlen maximum number of bytes to read (integer) |
153 @param maxlen maximum number of bytes to read (integer) |
154 @return string containing the data (bytes) |
154 @return string containing the data (bytes) |
155 """ |
155 """ |
156 if self.__content.size(): |
156 if self.__content.size(): |