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


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

[Python-announce] Vulture 2.10

Started byJendrik Seipp <jendrikseipp@gmail.com>
First post2023-10-06 17:55 +0200
Last post2023-10-06 17:55 +0200
Articles 1 — 1 participant

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


Contents

  [Python-announce] Vulture 2.10 Jendrik Seipp <jendrikseipp@gmail.com> - 2023-10-06 17:55 +0200

#4030 — [Python-announce] Vulture 2.10

FromJendrik Seipp <jendrikseipp@gmail.com>
Date2023-10-06 17:55 +0200
Subject[Python-announce] Vulture 2.10
Message-ID<61e35389-8a54-667a-db8f-e71e934e72fc@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
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`


News
====
* Drop support for Python 3.7 (Jendrik Seipp, #323).
* Add support for Python 3.12 (Jendrik Seipp, #332).
* Use `end_lineno` AST attribute to obtain more accurate line counts 
(Jendrik Seipp).


Cheers,
Jendrik














[toc] | [standalone]


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


csiph-web