def __cmp__(self, other):
if other is None:
return False
elif isinstance(other, string_types):
other = distutils.version.StrictVersion(other)
return distutils.version.StrictVersion.__cmp__(self, other)
else:
return distutils.version.StrictVersion.__cmp__(self, other)
评论列表
文章目录