Home
last modified time | relevance | path

Searched refs:__cast (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/test/
Dtest_richcmp.py63 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__.py1192 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