PyLint/PyLintConfigDialog.py

changeset 32
b0a6368042b9
parent 30
de4b620a6e88
child 38
bf234b8941d9
equal deleted inserted replaced
31:d8e6de5a0cb7 32:b0a6368042b9
5 5
6 """ 6 """
7 Module implementing a dialog to configure the PyLint process. 7 Module implementing a dialog to configure the PyLint process.
8 """ 8 """
9 9
10 from __future__ import unicode_literals # __IGNORE_WARNING__ 10 from __future__ import unicode_literals
11 try: 11 try:
12 str = unicode # __IGNORE_WARNING__ 12 str = unicode
13 except (NameError): 13 except NameError:
14 pass 14 pass
15 15
16 import os 16 import os
17 import copy 17 import copy
18 18

eric ide

mercurial