This file is indexed.

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

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, `sources.Binaries`
    print sources.Files
    print sources.Index.ArchiveURI(sources.Files[0][2])