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


Groups > comp.lang.python.announce > #4213 > unrolled thread

[Python-announce] Vulture 2.14

Started byJendrik Seipp <jendrikseipp@gmail.com>
First post2024-12-08 18:41 +0100
Last post2024-12-08 18:41 +0100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python.announce


Contents

  [Python-announce] Vulture 2.14 Jendrik Seipp <jendrikseipp@gmail.com> - 2024-12-08 18:41 +0100

#4213 — [Python-announce] Vulture 2.14

FromJendrik Seipp <jendrikseipp@gmail.com>
Date2024-12-08 18:41 +0100
Subject[Python-announce] Vulture 2.14
Message-ID<0940d45c-61d1-4346-aa93-9663f6759aba@gmail.com>
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 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`


News
====
* Improve reachability analysis (kreathon, #270, #302).
* Add type hints for `get_unused_code` and the fields of the `Item` 
class (John Doknjas, #361).

Cheers,
Jendrik















[toc] | [standalone]


Back to top | Article view | comp.lang.python.announce


csiph-web