eric6/WebBrowser/FlashCookieManager/FlashCookieManager.py

branch
without_py2_and_pyqt4
changeset 7192
a22eee00b052
parent 6942
2602857055c5
child 7229
53054eb5b15a
equal deleted inserted replaced
7191:960850ec284c 7192:a22eee00b052
6 """ 6 """
7 Module implementing the Flash cookie manager. 7 Module implementing the Flash cookie manager.
8 """ 8 """
9 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11
12 try:
13 str = unicode # __IGNORE_EXCEPTION__
14 except NameError:
15 pass
16 11
17 import shutil 12 import shutil
18 13
19 from PyQt5.QtCore import QObject, QTimer, QDir, QFileInfo, QFile 14 from PyQt5.QtCore import QObject, QTimer, QDir, QFileInfo, QFile
20 15

eric ide

mercurial