(self, other)
| 74 | self.prerelease >= other.prerelease))) |
| 75 | |
| 76 | def gt(self, other): |
| 77 | return (self.major > other.major or |
| 78 | (self.major == other.major and self.minor > other.minor) or |
| 79 | (self.major == other.major and self.minor == other.minor and self.bugfix > other.bugfix)) |
| 80 | |
| 81 | def is_back_compat_with(self, other): |
| 82 | if not self.on_or_after(other): |
no outgoing calls
no test coverage detected