20 """ |
20 """ |
21 def __init__(self): |
21 def __init__(self): |
22 """ |
22 """ |
23 Constructor |
23 Constructor |
24 """ |
24 """ |
25 ConfigurationPageBase.__init__(self) |
25 super().__init__() |
26 self.setupUi(self) |
26 self.setupUi(self) |
27 self.setObjectName("PythonPage") |
27 self.setObjectName("PythonPage") |
28 |
28 |
29 self.stringEncodingComboBox.addItems(sorted(supportedCodecs)) |
29 self.stringEncodingComboBox.addItems(sorted(supportedCodecs)) |
30 self.ioEncodingComboBox.addItems(sorted(supportedCodecs)) |
30 self.ioEncodingComboBox.addItems(sorted(supportedCodecs)) |