Searched refs:__cast (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/test/ |
D | test_richcmp.py | 63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))]) 66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))]) 69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))]) 72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))]) 75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))]) 78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))]) 80 def __cast(self, other): member in Vector
|
/third_party/python/Lib/collections/ |
D | __init__.py | 1192 return self.data < self.__cast(other) 1195 return self.data <= self.__cast(other) 1198 return self.data == self.__cast(other) 1201 return self.data > self.__cast(other) 1204 return self.data >= self.__cast(other) 1206 def __cast(self, other): member in UserList
|