Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python.announce > #556

Vulture 0.3 released

Date 2012-03-22 16:03 +0100
From Jendrik Seipp <jendrikseipp@web.de>
Subject Vulture 0.3 released
Newsgroups comp.lang.python.announce
Message-ID <mailman.921.1332510702.3037.python-announce-list@python.org> (permalink)

Show all headers | View raw


vulture - Find dead code
========================

vulture finds unused classes, functions and variables in Python code. 
This helps you cleanup and find errors in your programs. If you run it 
on both your library and test suite you can find untested code.

Due to Python's dynamic nature it is impossible to find all dead code 
for a static code analyzer like vulture, because it ignores scopes and 
scans only token names. Additionally some dynamic items that are not 
explicitly mentioned in the code may be incorrectly reported as dead code.


Download
========

http://pypi.python.org/pypi/vulture


Features
========

- Fast: Uses static code analysis
- Lightweight: Only one module
- Complements pyflakes and has the same output syntax
- Supports Python 2.6, 2.7 and 3.x


News
====

* Add support for python3
* Report unused attributes
* Find tuple assignments in comprehensions
* Scan files given on the command line even if they don't end with .py


Cheers,
Jendrik




Back to comp.lang.python.announce | Previous | Next | Find similar | Unroll thread


Thread

Vulture 0.3 released Jendrik Seipp <jendrikseipp@web.de> - 2012-03-22 16:03 +0100

csiph-web