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