This file is indexed.

/usr/share/pyshared/lpltk/tkcollection.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/python

from utils import typecheck_Collection

class TKCollection(object):
    def __init__(self, tk_type, service, lp_objects=None):
        '''Initialize the instance from a Launchpad bug.'''
        self._tk_type       = tk_type
        self._service       = service
        self._lp_objects    = None

        if lp_objects:
            self._lp_objects    = typecheck_Collection(lp_objects)

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

    def __getitem__(self, key):
        self._fetch_if_needed()
        return self._tk_type(self._service, self._lp_objects[key])

    def __iter__(self):
        self._fetch_if_needed()
        for obj in self._lp_objects:
            o = self._get(obj)
            yield o

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

    def _fetch_if_needed(self):
        if self._lp_objects == None:
            self._lp_objects = self._fetch_all()
        assert(self._lp_objects is not None)

    def _get(self, obj):
        return self._tk_type(self._service, obj)

    def _fetch_all(self):
        '''Override this routine in the subclass to retrieve the necessary
           data from launchpad and return it as a LPCollection of LP objects.'''
        import inspect
        raise TypeError('Abstract method `%s.%s` called' %(
            type(self).__name__, inspect.stack()[0][3]))


if __name__ == "__main__":
    from lpltk import LaunchpadService
    from distribution import Distribution

    class MyDists(Collection):
        def __init__(self, lp):
            Collection.__init__(self, Distribution, lp)

        def _fetch_all(self):
            return self._service.launchpad.distributions

    lp = LaunchpadService(config={'read_only':True})
    objects = MyDists(lp)
    for obj in objects:
        print obj.display_name,
        if obj.current_series:
            print obj.current_series.name
        else:
            print "<no series>"

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