freebsd-ports/devel/py-vulture/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

15 lines
703 B
Text

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.
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 2.7 and Python >= 3.4