This file is indexed.

/usr/share/pyshared/lpltk/distributions.py is in python-launchpadlib-toolkit 2.3.

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

from distribution               import Distribution

class Distributions(object):
    # __init__
    #
    # Initialize the instance from a Launchpad bug.
    #
    def __init__(self, service):
        self.__service       = service
        self.__distributions = None

    # __len__
    #
    def __len__(self):
        return len(list(self.__iter__()))

    # __getitem__
    #
    def __getitem__(self, key):
        self.__fetch_if_needed()
        return Distribution(self.__service, self.__distributions[key])

    # __iter__
    #
    def __iter__(self):
        self.__fetch_if_needed()
        for distro in self.__distributions:
            d = Distribution(self.__service, distro)
            yield d

    # __contains__
    #
    def __contains__(self, item):
        return item in self.__iter__()

    # __fetch_if_needed
    #
    def __fetch_if_needed(self):
        if self.__distributions == None:
            self.__distributions = self.__service.launchpad.distributions


# vi:set ts=4 sw=4 expandtab: