9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 import os |
12 import os |
13 |
13 |
14 from PyQt4.QtCore import pyqtSignal, QObject, Qt |
14 from PyQt5.QtCore import pyqtSignal, QObject, Qt |
15 from PyQt4.QtGui import QKeySequence, QMenu, QToolBar, QApplication, QDialog, \ |
15 from PyQt5.QtGui import QKeySequence |
|
16 from PyQt5.QtWidgets import QMenu, QToolBar, QApplication, QDialog, \ |
16 QInputDialog |
17 QInputDialog |
17 |
18 |
18 from UI.Info import Program |
19 from UI.Info import Program |
19 |
20 |
20 from .DebugClientCapabilities import HasDebugger, HasInterpreter, \ |
21 from .DebugClientCapabilities import HasDebugger, HasInterpreter, \ |