Preferences/ConfigurationPages/EditorPropertiesPage.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the Editor Properties configuration page. 7 Module implementing the Editor Properties configuration page.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 from QScintilla.QsciScintillaCompat import QSCINTILLA_VERSION 12 from QScintilla.QsciScintillaCompat import QSCINTILLA_VERSION
11 13
12 from .ConfigurationPageBase import ConfigurationPageBase 14 from .ConfigurationPageBase import ConfigurationPageBase
13 from .Ui_EditorPropertiesPage import Ui_EditorPropertiesPage 15 from .Ui_EditorPropertiesPage import Ui_EditorPropertiesPage
23 """ 25 """
24 Constructor 26 Constructor
25 27
26 @param lexers reference to the lexers dictionary 28 @param lexers reference to the lexers dictionary
27 """ 29 """
28 super().__init__() 30 super(EditorPropertiesPage, self).__init__()
29 self.setupUi(self) 31 self.setupUi(self)
30 self.setObjectName("EditorPropertiesPage") 32 self.setObjectName("EditorPropertiesPage")
31 33
32 self.languages = sorted(list(lexers.keys())[:]) 34 self.languages = sorted(list(lexers.keys())[:])
33 35

eric ide

mercurial