10 from PyQt6.QtCore import pyqtSlot |
10 from PyQt6.QtCore import pyqtSlot |
11 |
11 |
12 from .ConfigurationPageBase import ConfigurationPageBase |
12 from .ConfigurationPageBase import ConfigurationPageBase |
13 from .Ui_PythonPage import Ui_PythonPage |
13 from .Ui_PythonPage import Ui_PythonPage |
14 |
14 |
15 import Preferences |
15 from eric7 import Preferences |
16 from Utilities import supportedCodecs |
16 from eric7.Utilities import supportedCodecs |
17 |
17 |
18 |
18 |
19 class PythonPage(ConfigurationPageBase, Ui_PythonPage): |
19 class PythonPage(ConfigurationPageBase, Ui_PythonPage): |
20 """ |
20 """ |
21 Class implementing the Python configuration page. |
21 Class implementing the Python configuration page. |