PyLint/PyLintExecDialog.py

changeset 32
b0a6368042b9
parent 30
de4b620a6e88
child 33
b4cb9692bd3d
equal deleted inserted replaced
31:d8e6de5a0cb7 32:b0a6368042b9
5 5
6 """ 6 """
7 Module implementing a dialog to show the results of the PyLint run. 7 Module implementing a dialog to show the results of the PyLint run.
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 17
18 from PyQt4.QtCore import QTimer, QProcess, Qt, pyqtSlot 18 from PyQt4.QtCore import QTimer, QProcess, Qt, pyqtSlot

eric ide

mercurial