4554:f3428ddd577c | 4555:861e1741985c |
---|---|
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 | |
11 | 9 |
12 """ License | 10 """ License |
13 Copyright 2005-2011 Divmod, Inc. | 11 Copyright 2005-2011 Divmod, Inc. |
14 Copyright 2013-2014 Florent Xicluna | 12 Copyright 2013-2014 Florent Xicluna |
15 | 13 |
167 - Add reporting for some types of import shadowing. | 165 - Add reporting for some types of import shadowing. |
168 - Improve reporting of unbound locals | 166 - Improve reporting of unbound locals |
169 """ | 167 """ |
170 | 168 |
171 __version__ = '1.0.0' | 169 __version__ = '1.0.0' |
170 | |
171 # | |
172 # eflag: noqa = M702 |