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


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

[Python-announce] Vulture 2.8

From Jendrik Seipp <jendrikseipp@gmail.com>
Newsgroups comp.lang.python.announce
Subject [Python-announce] Vulture 2.8
Date 2023-08-10 17:32 +0200
Message-ID <70cb04a7-20f6-8386-cb26-c330ebaa0acd@gmail.com> (permalink)

Show all headers | View raw


Vulture - Find dead code
========================

Vulture finds unused code in Python programs. This is useful for
cleaning up and finding errors in large code bases. If you run Vulture
on both your library and test suite you can find untested code.

Due to Python's dynamic nature, static code analyzers like Vulture are
likely to miss some dead code. Also, code that is only called
implicitly may be reported as unused. Nonetheless, Vulture can be a
very helpful tool for higher code quality.


Download
========
https://github.com/jendrikseipp/vulture
http://pypi.python.org/pypi/vulture


Features
========
* fast: uses static code analysis
* tested: tests itself and has complete test coverage
* complements pyflakes and has the same output syntax
* sorts unused classes and functions by size with `--sort-by-size`
* supports Python 3.6+


News
====
* Add `UnicodeEncodeError` exception handling to `core.py` (milanbalazs, 
#299).
* Add whitelist for `Enum` attributes `_name_` and `_value_` (Eugene 
Toder, #305).
* Run tests and add PyPI trove for Python 3.11 (Jendrik Seipp).


Cheers,
Jendrik












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


Thread

[Python-announce] Vulture 2.8 Jendrik Seipp <jendrikseipp@gmail.com> - 2023-08-10 17:32 +0200

csiph-web