7 Module implementing a disk cache respecting privacy. |
7 Module implementing a disk cache respecting privacy. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt4.QtWebKit import QWebSettings |
12 from PyQt5.QtWebKit import QWebSettings |
13 from PyQt4.QtNetwork import QNetworkDiskCache |
13 from PyQt5.QtNetwork import QNetworkDiskCache |
14 |
14 |
15 |
15 |
16 class NetworkDiskCache(QNetworkDiskCache): |
16 class NetworkDiskCache(QNetworkDiskCache): |
17 """ |
17 """ |
18 Class implementing a disk cache respecting privacy. |
18 Class implementing a disk cache respecting privacy. |