20 """ |
22 """ |
21 Constructor |
23 Constructor |
22 |
24 |
23 @param parent reference to the parent object (QObject) |
25 @param parent reference to the parent object (QObject) |
24 """ |
26 """ |
25 super().__init__(parent) |
27 super(FtpAccessHandler, self).__init__(parent) |
26 |
28 |
27 self.__authenticatorCache = {} |
29 self.__authenticatorCache = {} |
28 self.__proxyAuthenticator = None |
30 self.__proxyAuthenticator = None |
29 |
31 |
30 def createRequest(self, op, request, outgoingData=None): |
32 def createRequest(self, op, request, outgoingData=None): |