[ANN] Pyflakes 0.7
Hi, I'm pleased to announce the release of Pyflakes 0.7. It includes several fixes and enhancements: - Add --version and --help options. - Support `python -m pyflakes` (Python 2.7 and Python 3.x). - Add attribute `Message.col` to report column offset. - Do not report redefinition of variable for a variable used in a list comprehension in a conditional. - Do not report redefinition of variable for generator expressions and set or dict comprehensions. - Do not report undefined name when the code is protected with a `NameError` exception handler. - Do not report redefinition of variable when unassigning a module imported for its side-effect. - Support special locals like `__tracebackhide__` for py.test. - Support checking doctests. - Fix issue with Turkish locale where `'i'.upper() == 'i'` in Python 2. All the best, -- Florent Xicluna
On 4/17/13 11:26 AM, Florent wrote:
Hi,
I'm pleased to announce the release of Pyflakes 0.7.
looks good! thanks btw, since they were tons of fixes since flake8 2.0 maybe we could release 2.1 ? Cheers -- Tarek Ziadé · http://ziade.org · @tarek_ziade
On Wed, Apr 17, 2013 at 5:33 AM, Tarek Ziadé <tarek@ziade.org> wrote:
On 4/17/13 11:26 AM, Florent wrote:
Hi,
I'm pleased to announce the release of Pyflakes 0.7.
It looks awesome Florent!
looks good! thanks
btw, since they were tons of fixes since flake8 2.0 maybe we could release 2.1 ?
Let me look over the issues, once more and make sure nothing should be fixed before 2.1, and then I'll reply here.
participants (3)
-
Florent -
Ian Cordasco -
Tarek Ziadé