Lines Matching refs:patch
106 self.patch = int(split[2])
108 self.patch = None
113 assert self.patch is None or self.patch < 4096
118 if self.patch is not None:
119 ver_list.append(str(self.patch))
123 patch = self.patch if self.patch is not None else 0
124 ver_list = [str(self.major), str(self.minor), str(patch)]
129 patch = self.patch if self.patch is not None else 0
130 return (self.major << 22) | (self.minor << 12) | patch
135 if (self.patch is None) != (other.patch is None):
137 other.patch = self.patch
146 version.version.patch = API_PATCH_VERSION