mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/pyflakes-pathogen/ftplugin/python/pyflakes/TODO

12 lines
283 B
Plaintext

- 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()