This file is indexed.

/usr/share/lintian/checks/python/pyflakes.desc is in lintian4python 0.28.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
Check-Script: python/pyflakes
Author: Jakub Wilk <jwilk@debian.org>
Type: binary
Info: run pyflakes over Python code
Needs-Info: index, bin-pkg-control, scripts, unpacked

Tag: pyflakes-doctest-syntax-error
Severity: normal
Certainty: possible
Info: pyflakes emitted the following message:
  syntax error in doctest

Tag: pyflakes-import-shadowed-by-loop-var
Severity: important
Certainty: possible
Info: pyflakes emitted the following message:
  import <i>var</i> from line <i>n</i> shadowed by loop variable

Tag: pyflakes-import-star-used
Severity: wishlist
Certainty: certain
Experimental: yes
Info: pyflakes emitted the following message:
  'from <i>mod</i> import *' used; unable to detect undefined names
 This is usually not a bug in the tested code itself, but merely an indication
 that the code couldn't be tested thoroughly enough.
Ref: http://docs.python.org/2/howto/doanddont.html#from-module-import

Tag: pyflakes-redefined
Severity: normal
Certainty: wild-guess
Info: pyflakes emitted the following message:
  redefinition of <i>var</i> from line <i>n</i>

Tag: pyflakes-redefined-in-list-comp
Severity: normal
Certainty: wild-guess
Info: pyflakes emitted the following message:
  list comprehension redefines <i>var</i> from line <i>n</i>

Tag: pyflakes-redefined-while-unused
Severity: minor
Certainty: possible
Info: pyflakes emitted the following message:
  redefinition of unused <i>var</i> from line <i>n</i>

Tag: pyflakes-undefined-export
Severity: normal
Certainty: possible
Info: pyflakes emitted the following message:
  undefined name <i>var</i> in <b>__all__</b>

Tag: pyflakes-undefined-local
Severity: serious
Certainty: possible
Info: pyflakes emitted the following message:
  local variable <i>var</i> (defined in enclosing scope on line <i>n</i>) referenced before assignment

Tag: pyflakes-undefined-name
Severity: serious
Certainty: possible
Info: pyflakes emitted the following message:
  undefined name <i>var</i>

Tag: pyflakes-undefined-name-underscore
Severity: serious
Certainty: wild-guess
Experimental: yes
Info: pyflakes emitted the following message:
  undefined name <b>_</b>

Tag: pyflakes-unused-import
Severity: pedantic
Certainty: possible
Info: pyflakes emitted the following message:
  <i>var</i> imported but unused

Tag: pyflakes-unused-variable
Severity: pedantic
Certainty: possible
Info: pyflakes emitted the following message:
  local variable <i>var</i> is assigned to but never used