28 |
28 |
29 def __fireSignals(self): |
29 def __fireSignals(self): |
30 """ |
30 """ |
31 Private method to send some signals to end the connection. |
31 Private method to send some signals to end the connection. |
32 """ |
32 """ |
33 self.emit(SIGNAL("error(QNetworkReply::NetworkError)"), |
33 self.error.emit(QNetworkReply.ProtocolUnknownError) |
34 QNetworkReply.ProtocolUnknownError) |
|
35 self.finished[()].emit() |
34 self.finished[()].emit() |
36 |
35 |
37 def abort(self): |
36 def abort(self): |
38 """ |
37 """ |
39 Public slot to abort the operation. |
38 Public slot to abort the operation. |