7 Module implementing the Debugger Python3 configuration page. |
7 Module implementing the Debugger Python3 configuration page. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot |
10 from PyQt6.QtCore import pyqtSlot |
11 |
11 |
|
12 from eric7 import Preferences |
|
13 from eric7.EricGui import EricPixmapCache |
12 from eric7.EricWidgets.EricApplication import ericApp |
14 from eric7.EricWidgets.EricApplication import ericApp |
13 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
15 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
14 |
16 |
15 from .ConfigurationPageBase import ConfigurationPageBase |
17 from .ConfigurationPageBase import ConfigurationPageBase |
16 from .Ui_DebuggerPython3Page import Ui_DebuggerPython3Page |
18 from .Ui_DebuggerPython3Page import Ui_DebuggerPython3Page |
17 |
|
18 from eric7 import Preferences |
|
19 from eric7.EricGui import EricPixmapCache |
|
20 |
19 |
21 |
20 |
22 class DebuggerPython3Page(ConfigurationPageBase, Ui_DebuggerPython3Page): |
21 class DebuggerPython3Page(ConfigurationPageBase, Ui_DebuggerPython3Page): |
23 """ |
22 """ |
24 Class implementing the Debugger Python3 configuration page. |
23 Class implementing the Debugger Python3 configuration page. |