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.emit(QNetworkReply.ProtocolUnknownError) |
37 self.error.emit(QNetworkReply.ProtocolUnknownError) |
38 self.finished[()].emit() |
38 self.finished.emit() |
39 |
39 |
40 def abort(self): |
40 def abort(self): |
41 """ |
41 """ |
42 Public slot to abort the operation. |
42 Public slot to abort the operation. |
43 """ |
43 """ |