Plugins/CheckerPlugins/SyntaxChecker/pyflakes/__init__.py

changeset 4545
436736340877
parent 4543
2e6a880670e9
child 4555
861e1741985c
equal deleted inserted replaced
4544:5145cf800bb0 4545:436736340877
4 # 4 #
5 5
6 """ 6 """
7 Package containg pyflakes adapted for Qt. 7 Package containg pyflakes adapted for Qt.
8 """ 8 """
9
10 from __future__ import unicode_literals
9 11
10 """ License 12 """ License
11 Copyright 2005-2011 Divmod, Inc. 13 Copyright 2005-2011 Divmod, Inc.
12 Copyright 2013-2014 Florent Xicluna 14 Copyright 2013-2014 Florent Xicluna
13 15
164 - Check for __future__ imports after other statements. 166 - Check for __future__ imports after other statements.
165 - Add reporting for some types of import shadowing. 167 - Add reporting for some types of import shadowing.
166 - Improve reporting of unbound locals 168 - Improve reporting of unbound locals
167 """ 169 """
168 170
169 from __future__ import unicode_literals
170
171 __version__ = '1.0.0' 171 __version__ = '1.0.0'

eric ide

mercurial