File: pyflakes.1

package info (click to toggle)
pyflakes 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 388 kB
  • ctags: 699
  • sloc: python: 4,816; makefile: 15; sh: 7
file content (33 lines) | stat: -rw-r--r-- 1,371 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.TH "PYFLAKES" "1" "10/01/2007" "" ""
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.SH "NAME"
pyflakes - simple Python 2 source checker
.SH "SYNOPSIS"
.PP
\fBpyflakes\fR [\fIfile-or-directory\fR ...]
.SH "DESCRIPTION"
pyflakes is a simple program which checks Python source files for errors.
It is similar to PyChecker in scope, but differs in that it does not
execute the modules to check them. This is both safer and faster, although
it does not perform as many checks. Unlike PyLint, Pyflakes checks only
for logical errors in programs; it does not perform any checks on style.
.sp
All commandline arguments are checked, which have to be either regular files
or directories. If a directory is given, every \fB.py\fR file within
will be checked.
.sp
When no commandline arguments are given, data will be read from standard input.
.SH "OUTPUT"
Found warnings including unused imports, undefined variables
and unnecessary reimports, are printed on standard output.
Found errors including compile or encoding errors, are printed
on standard error.
.SH "EXIT STATUS"
The exit status is 0 when no warnings or errors are found. Otherwise the exit
status is 1.
.SH "AUTHOR"
This manual page was originally written by Bastian Kleineidam <calvin@debian\.org>
for the Debian distribution of pyflakes (but can be used by others)\.