Skip to content

Commit e64d563

Browse files
committed
-
1 parent 83e8af4 commit e64d563

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source_py3/python_toolbox/nifty_collections/lazy_tuple.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def __len__(self):
176176
def __eq__(self, other):
177177
if not sequence_tools.is_immutable_sequence(other):
178178
return False
179-
for i, j in itertools.izip_longest(self, other,
179+
for i, j in itertools.zip_longest(self, other,
180180
fillvalue=_SENTINEL):
181181
if (i is _SENTINEL) or (j is _SENTINEL):
182182
return False
@@ -201,7 +201,7 @@ def __lt__(self, other):
201201
return False
202202
elif not self and not other:
203203
return False
204-
for a, b in itertools.izip_longest(self, other,
204+
for a, b in itertools.zip_longest(self, other,
205205
fillvalue=_SENTINEL):
206206
if a is _SENTINEL:
207207
# `self` ran out. Now there can be two cases: (a) `other` ran

0 commit comments

Comments
 (0)