4542:706561253673 | 4546:0110fd561f94 |
---|---|
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' |