equal
deleted
inserted
replaced
38 def copy(self): |
38 def copy(self): |
39 return self.__class__(self) |
39 return self.__class__(self) |
40 |
40 |
41 def _is_trusted(self, fp, f): |
41 def _is_trusted(self, fp, f): |
42 st = util.fstat(fp) |
42 st = util.fstat(fp) |
43 if util.isowner(fp, st): |
43 if util.isowner(st): |
44 return True |
44 return True |
45 |
45 |
46 tusers, tgroups = self._trustusers, self._trustgroups |
46 tusers, tgroups = self._trustusers, self._trustgroups |
47 if '*' in tusers or '*' in tgroups: |
47 if '*' in tusers or '*' in tgroups: |
48 return True |
48 return True |