Lines Matching refs:other
384 SPARC menu.lst)-- any other state files that store boot
514 # DiskBootConfig does not support platforms other than native
747 # NetBootConfig is a bit different from the other BootConfig classes
879 def update(self, other):
881 other. The 'default' property IS NOT updated."""
884 newval = getattr(other, key)
890 def compare (self, other, cmp_default=True):
891 """Returns True if self is the same as other (attributes and
893 if self.__class__ != other.__class__:
897 if len(set(keys) - set(other._attributes.keys())) != 0:
902 if getattr(self, key) != getattr(other, key):
906 'boot instances ([%s] vs. [%s])', (attrerr, self, other))
909 if cmp_default and self.default != other.default:
1046 def __eq__(self, other):
1049 if key not in other._attributes:
1051 if getattr(self, key) != getattr(other, key):