MCPcopy Create free account
hub / github.com/apache/solr / gt

Method gt

dev-tools/scripts/scriptutil.py:76–79  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

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):

Callers 2

set_latest_versionMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected