Lines Matching refs:patch
98 self.patch = int(split[2])
100 self.patch = None
105 assert self.patch is None or self.patch < 4096
110 if self.patch is not None:
111 ver_list.append(str(self.patch))
115 patch = self.patch if self.patch is not None else 0
116 ver_list = [str(self.major), str(self.minor), str(patch)]
121 patch = self.patch if self.patch is not None else 0
122 return (self.major << 22) | (self.minor << 12) | patch
127 if (self.patch is None) != (other.patch is None):
129 other.patch = self.patch