Lines Matching defs:convert
50 from .convert import *
55 various convert functions to attempt to convert values to useable
67 def convert(self, other):
79 return self.convert(other) < other
81 return self.convert(other) <= other
83 return self.convert(other) == other
85 return self.convert(other) != other
87 return self.convert(other) > other
89 return self.convert(other) >= other
92 return self.convert(other) + other
94 return self.convert(other) - other
96 return self.convert(other) * other
98 return self.convert(other) / other
100 return self.convert(other) / other
103 return other + self.convert(other)
105 return other - self.convert(other)
107 return other * self.convert(other)
109 return other / self.convert(other)
111 return other / self.convert(other)