14 |
14 |
15 |
15 |
16 class FollowRedirectReply(QObject): |
16 class FollowRedirectReply(QObject): |
17 """ |
17 """ |
18 Class implementing a network reply delegate allowing to check redirects. |
18 Class implementing a network reply delegate allowing to check redirects. |
|
19 |
|
20 @signal finished() emitted to indicate the end of the redirect |
19 """ |
21 """ |
20 finished = pyqtSignal() |
22 finished = pyqtSignal() |
21 |
23 |
22 def __init__(self, url, manager, maxRedirects=5): |
24 def __init__(self, url, manager, maxRedirects=5): |
23 """ |
25 """ |