(self)
| 65 | return self.bugfix == 0 and self.minor != 0 |
| 66 | |
| 67 | def is_major_release(self): |
| 68 | return self.bugfix == 0 and self.minor == 0 |
| 69 | |
| 70 | def on_or_after(self, other): |
| 71 | return (self.major > other.major or self.major == other.major and |
no outgoing calls
no test coverage detected