vim/ftplugin/python/pyflakes/TODO @ d6e9fd358013

vim: add pyflakes
author Steve Losh <steve@stevelosh.com>
date Fri, 21 May 2010 14:59:02 -0400
parents (none)
children (none)
 - Check for methods that override other methods except that they vary by case.
 - assign/increment + unbound local error not caught
        def foo():
          bar = 5
          def meep():
            bar += 2
          meep()
          print bar

        print foo()