Groups | Search | Server Info | Keyboard shortcuts | Login | Register
Groups > comp.lang.python.announce > #4365
| From | Jendrik Seipp <jendrikseipp@gmail.com> |
|---|---|
| Newsgroups | comp.lang.python.announce |
| Subject | [Python-announce] Vulture 2.15 |
| Date | 2026-03-04 21:43 +0000 |
| Message-ID | <3e7b7f4e-3e1b-49ab-9e6c-0de01d9afc37@gmail.com> (permalink) |
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 ==== * Handle `while True` loops without `break` statements (kreathon). * Add whitelist for `ssl.SSLContext` (tunnelsociety, #392). * Add more ruff rules (even-even). * Drop support for Python 3.8 (Jendrik Seipp, #398). * Add support for Python 3.14 (even-even). Cheers, Jendrik
Back to comp.lang.python.announce | Previous | Next | Find similar
[Python-announce] Vulture 2.15 Jendrik Seipp <jendrikseipp@gmail.com> - 2026-03-04 21:43 +0000
csiph-web