We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e09f291 commit 6ca8e35Copy full SHA for 6ca8e35
source_py2/python_toolbox/sequence_tools/cute_range.py
@@ -120,6 +120,7 @@ def __init__(self, *args):
120
121
__eq__ = lambda self, other: (type(self) == type(other) and
122
(self._reduced == other._reduced))
123
+ __ne__ = lambda self, other: not self == other
124
125
distance_to_cover = caching.CachedProperty(lambda self:
126
self.stop - self.start)
0 commit comments