This file is indexed.

/usr/lib/python3/dist-packages/trytond/model/match.py is in tryton-server 4.6.3-2.

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
# This file is part of Tryton.  The COPYRIGHT file at the toplevel of this
# repository contains the full copyright notices and license terms.


class MatchMixin(object):

    def match(self, pattern, match_none=False):
        '''Match on pattern
        pattern is a dictionary with model field as key
        and matching value as value'''
        for field, pattern_value in pattern.items():
            value = getattr(self, field)
            if not match_none and value is None:
                continue
            if self._fields[field]._type == 'many2one':
                value = value.id if value else value
            if value != pattern_value:
                return False
        return True