7 Module implementing a network reply delegate allowing to check redirects. |
7 Module implementing a network reply delegate allowing to check redirects. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt4.QtCore import pyqtSignal, QObject |
12 from PyQt5.QtCore import pyqtSignal, QObject |
13 from PyQt4.QtNetwork import QNetworkRequest |
13 from PyQt5.QtNetwork import QNetworkRequest |
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. |