diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-14 11:09:42 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-03-17 12:37:56 -0400 |
commit | 2b207d0671b5976ded8c5524e7ca36f3afcd0b57 (patch) | |
tree | f3c3b8abf2fb60bd92295bfb7a13b084826e60a1 /python | |
parent | 449a4cec59ca569e102c15d570dea62292c06016 (diff) |
python/pyflakes: Wrap README at 72 columns.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'python')
-rw-r--r-- | python/pyflakes/README | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/python/pyflakes/README b/python/pyflakes/README index ffc04d348b4ca..3c1e1fdf87938 100644 --- a/python/pyflakes/README +++ b/python/pyflakes/README @@ -1,17 +1,16 @@ PyFlakes a Lint-like tool for Python, like PyChecker. It is focused on identifying common errors quickly without executing Python code. -Its primary advantage over PyChecker is that it is fast. You don't have -to sit around for minutes waiting for the checker to run; it runs on most -large projects in only a few seconds. +Its primary advantage over PyChecker is that it is fast. You don't +have to sit around for minutes waiting for the checker to run; it runs +on most large projects in only a few seconds. 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 redefined without having been used -These can each take many forms. For example, PyFlakes will tell you when -you have forgotten an import, mistyped a variable name, defined two -functions with the same name, shadowed a variable from another scope, -imported a module twice, or two different modules with the same name, and -so on. - +These can each take many forms. For example, PyFlakes will tell you +when you have forgotten an import, mistyped a variable name, defined +two functions with the same name, shadowed a variable from another +scope, imported a module twice, or two different modules with the same +name, and so on. |