12 import contextlib |
12 import contextlib |
13 |
13 |
14 from PyQt6.QtCore import pyqtSignal, pyqtSlot, QModelIndex |
14 from PyQt6.QtCore import pyqtSignal, pyqtSlot, QModelIndex |
15 from PyQt6.QtNetwork import QTcpServer, QHostAddress, QHostInfo, QNetworkInterface |
15 from PyQt6.QtNetwork import QTcpServer, QHostAddress, QHostInfo, QNetworkInterface |
16 |
16 |
17 from EricWidgets.EricApplication import ericApp |
17 from eric7.EricWidgets.EricApplication import ericApp |
18 from EricWidgets import EricMessageBox |
18 from eric7.EricWidgets import EricMessageBox |
19 |
19 |
20 from .BreakPointModel import BreakPointModel |
20 from .BreakPointModel import BreakPointModel |
21 from .WatchPointModel import WatchPointModel |
21 from .WatchPointModel import WatchPointModel |
22 from . import DebugClientCapabilities |
22 from . import DebugClientCapabilities |
23 |
23 |
24 import Preferences |
24 from eric7 import Preferences |
25 |
25 |
26 |
26 |
27 DebuggerInterfaces = { |
27 DebuggerInterfaces = { |
28 "Python": "DebuggerInterfacePython", |
28 "Python": "DebuggerInterfacePython", |
29 "None": "DebuggerInterfaceNone", |
29 "None": "DebuggerInterfaceNone", |