This file is indexed.

/usr/share/doc/python-apt-doc/examples/sources.py is in python-apt-doc 1.6.0.

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
#!/usr/bin/python

import apt_pkg

apt_pkg.init()

#cache = apt_pkg.Cache()
#sources = apt_pkg.SourceRecords(cache)

sources = apt_pkg.SourceRecords()
sources.restart()
while sources.lookup('hello'):
    print sources.package, sources.version, sources.maintainer, \
        sources.section, repr(sources.binaries)
    print sources.files
    print sources.index.archive_uri(sources.files[0][2])