26 |
26 |
27 def createRequest(self, op, request, outgoingData=None): |
27 def createRequest(self, op, request, outgoingData=None): |
28 """ |
28 """ |
29 Protected method to create a request. |
29 Protected method to create a request. |
30 |
30 |
31 @param op the operation to be performed (QNetworkAccessManager.Operation) |
31 @param op the operation to be performed |
|
32 (QNetworkAccessManager.Operation) |
32 @param request reference to the request object (QNetworkRequest) |
33 @param request reference to the request object (QNetworkRequest) |
33 @param outgoingData reference to an IODevice containing data to be sent |
34 @param outgoingData reference to an IODevice containing data to be sent |
34 (QIODevice) |
35 (QIODevice) |
35 @return reference to the created reply object (QNetworkReply) |
36 @ireturn reference to the created reply object (QNetworkReply) |
|
37 @exception NotImplementedError raised to indicate that the method must |
|
38 be implemented by a subclass |
36 """ |
39 """ |
37 raise NotImplementedError() |
40 raise NotImplementedError() |