This file is indexed.

/usr/share/pyshared/weboob/tools/ordereddict.py is in python-weboob-core 0.g-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
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# -*- coding: utf-8 -*-

# Copyright(C) 2010-2011 Christophe Benz
#
# This file is part of weboob.
#
# weboob is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# weboob is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with weboob. If not, see <http://www.gnu.org/licenses/>.


try:
    from collections import OrderedDict
except ImportError:
    try:
        from simplejson import OrderedDict
    except ImportError:
        try:
            from ordereddict import OrderedDict
        except ImportError:
            ## {{{ http://code.activestate.com/recipes/576693/ (r6)
            from UserDict import DictMixin

            class OrderedDict(dict, DictMixin):
                def __init__(self, *args, **kwds):
                    if len(args) > 1:
                        raise TypeError('expected at most 1 arguments, got %d' % len(args))
                    try:
                        self.__end
                    except AttributeError:
                        self.clear()
                    self.update(*args, **kwds)

                def clear(self):
                    self.__end = end = []
                    end += [None, end, end]         # sentinel node for doubly linked list
                    self.__map = {}                 # key --> [key, prev, next]
                    dict.clear(self)

                def __setitem__(self, key, value):
                    if key not in self:
                        end = self.__end
                        curr = end[1]
                        curr[2] = end[1] = self.__map[key] = [key, curr, end]
                    dict.__setitem__(self, key, value)

                def __delitem__(self, key):
                    dict.__delitem__(self, key)
                    key, prev, next = self.__map.pop(key)
                    prev[2] = next
                    next[1] = prev

                def __iter__(self):
                    end = self.__end
                    curr = end[2]
                    while curr is not end:
                        yield curr[0]
                        curr = curr[2]

                def __reversed__(self):
                    end = self.__end
                    curr = end[1]
                    while curr is not end:
                        yield curr[0]
                        curr = curr[1]

                def popitem(self, last=True):
                    if not self:
                        raise KeyError('dictionary is empty')
                    if last:
                        key = reversed(self).next()
                    else:
                        key = iter(self).next()
                    value = self.pop(key)
                    return key, value

                def __reduce__(self):
                    items = [[k, self[k]] for k in self]
                    tmp = self.__map, self.__end
                    del self.__map, self.__end
                    inst_dict = vars(self).copy()
                    self.__map, self.__end = tmp
                    if inst_dict:
                        return (self.__class__, (items,), inst_dict)
                    return self.__class__, (items,)

                def keys(self):
                    return list(self)

                setdefault = DictMixin.setdefault
                update = DictMixin.update
                pop = DictMixin.pop
                values = DictMixin.values
                items = DictMixin.items
                iterkeys = DictMixin.iterkeys
                itervalues = DictMixin.itervalues
                iteritems = DictMixin.iteritems

                def __repr__(self):
                    if not self:
                        return '%s()' % (self.__class__.__name__,)
                    return '%s(%r)' % (self.__class__.__name__, self.items())

                def copy(self):
                    return self.__class__(self)

                @classmethod
                def fromkeys(cls, iterable, value=None):
                    d = cls()
                    for key in iterable:
                        d[key] = value
                    return d

                def __eq__(self, other):
                    if isinstance(other, OrderedDict):
                        return len(self) == len(other) and self.items() == other.items()
                    return dict.__eq__(self, other)

                def __ne__(self, other):
                    return not self == other
            ## end of http://code.activestate.com/recipes/576693/ }}}