python/pyflakes: Wrap README at 72 columns.
Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
parent
449a4cec59
commit
2b207d0671
|
@ -1,17 +1,16 @@
|
||||||
PyFlakes a Lint-like tool for Python, like PyChecker. It is focused on
|
PyFlakes a Lint-like tool for Python, like PyChecker. It is focused on
|
||||||
identifying common errors quickly without executing Python code.
|
identifying common errors quickly without executing Python code.
|
||||||
|
|
||||||
Its primary advantage over PyChecker is that it is fast. You don't have
|
Its primary advantage over PyChecker is that it is fast. You don't
|
||||||
to sit around for minutes waiting for the checker to run; it runs on most
|
have to sit around for minutes waiting for the checker to run; it runs
|
||||||
large projects in only a few seconds.
|
on most large projects in only a few seconds.
|
||||||
|
|
||||||
The two primary categories of defects reported by PyFlakes are:
|
The two primary categories of defects reported by PyFlakes are:
|
||||||
* Names which are used but not defined or used before they are defined
|
* Names which are used but not defined or used before they are defined
|
||||||
* Names which are redefined without having been used
|
* Names which are redefined without having been used
|
||||||
|
|
||||||
These can each take many forms. For example, PyFlakes will tell you when
|
These can each take many forms. For example, PyFlakes will tell you
|
||||||
you have forgotten an import, mistyped a variable name, defined two
|
when you have forgotten an import, mistyped a variable name, defined
|
||||||
functions with the same name, shadowed a variable from another scope,
|
two functions with the same name, shadowed a variable from another
|
||||||
imported a module twice, or two different modules with the same name, and
|
scope, imported a module twice, or two different modules with the same
|
||||||
so on.
|
name, and so on.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue