python-pyflakes
Port variant v12
Summary Passive checker of Python programs (3.12)
Package version 3.3.2
Homepage https://github.com/PyCQA/pyflakes
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v13
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 31 MAR 2025, 22:12:31 UTC
Port created 15 AUG 2018, 15:32:35 UTC
Subpackage Descriptions
single ======== Pyflakes ======== A simple program which checks Python source files for errors. Pyflakes analyzes programs and detects various errors. It works by parsing the source file, not importing it, so it is safe to use on modules with side effects. It's also much faster. It is [available on PyPI] and it supports all active versions of Python: 3.9+. Installation ------------ It can be installed with:: $ pip install --upgrade pyflakes Useful tips: * Be sure to install it for a version of Python which is compatible with your codebase: ``python#.# -m pip install pyflakes`` (for example, ``python3.10 -m pip install pyflakes``) * You can also invoke Pyflakes with ``python#.# -m pyflakes .`` if you want to run it for a specific python version. * If you require more options and more flexibility, you could give a look to Flake8_ too. Design Principles ----------------- Pyflakes makes a simple promise: it will never complain about style, and it will try very, very hard to never emit false positives. Pyflakes is also faster than Pylint_. This is largely because Pyflakes only examines the syntax tree of each file individually. As a consequence, Pyflakes is more limited in the types of things it can check. If you like Pyflakes but also want stylistic checks, you want flake8_, which combines Pyflakes with style checks against `PEP 8`_ and adds per-project configuration ability. Mailing-list ------------ Share your feedback and ideas: `subscribe to the mailing-list `_ Contributing ------------ Issues are tracked on [GitHub]. Patches may be submitted via a `GitHub pull request`_. If you are comfortable doing so, please `rebase your changes`_ so they may be applied to main with a fast-forward merge, and each commit is a coherent unit of work with a well-written log message. If you are not comfortable with this rebase workflow, the project maintainers will be happy to rebase your commits for you. All changes should include tests and pass flake8_. :alt: GitHub Actions build status .. _Pylint: https://pylint.pycqa.org/ .. _flake8: https://pypi.org/project/flake8/ .. _`PEP 8`: https://www.python.org/dev/peps/pep-0008/ .. _`rebase your changes`: https://git-scm.com/book/en/v2/Git-Branching-Rebasing .. _`GitHub pull request`: https://github.com/PyCQA/pyflakes/pulls Changelog --------- Please see `NEWS.rst `_.
Configuration Switches (platform-specific settings discarded)
PY312 ON Build using Python 3.12 PY313 OFF Build using Python 3.13
Package Dependencies by Type
Build (only) python312:dev:std
python-pip:single:v12
autoselect-python:single:std
Build and Runtime python312:primary:std
Download groups
main mirror://PYPIWHL/15/40/b293a4fa769f3b02ab9e387c707c4cbdc34f073f945de0386107d4e669e6
Distribution File Information
5039c8339cbb1944045f4ee5466908906180f13cc99cc9949348d10f82a5c32a 63164 python-src/pyflakes-3.3.2-py2.py3-none-any.whl
Ports that require python-pyflakes:v12
python-flake8:v12 Source code checker wrapper (3.12)