32 |
32 |
33 def __fireSignals(self): |
33 def __fireSignals(self): |
34 """ |
34 """ |
35 Private method to send some signals to end the connection. |
35 Private method to send some signals to end the connection. |
36 """ |
36 """ |
37 self.error[QNetworkReply::NetworkError].emit(QNetworkReply.ContentAccessDenied) |
37 self.error[QNetworkReply.NetworkError].emit(QNetworkReply.ContentAccessDenied) |
38 self.finished.emit() |
38 self.finished.emit() |
39 |
39 |
40 def readData(self, maxlen): |
40 def readData(self, maxlen): |
41 """ |
41 """ |
42 Protected method to retrieve data from the reply object. |
42 Protected method to retrieve data from the reply object. |