Lines Matching refs:patch
31 self.patch = int(split[2])
33 self.patch = None
38 assert self.patch is None or self.patch < 4096
43 if self.patch is not None:
44 ver_list.append(str(self.patch))
48 patch = self.patch if self.patch is not None else 0
49 ver_list = [str(self.major), str(self.minor), str(patch)]
54 patch = self.patch if self.patch is not None else 0
55 return (self.major << 22) | (self.minor << 12) | patch
60 if (self.patch is None) != (other.patch is None):
62 other.patch = self.patch