File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
source_py3/python_toolbox/nifty_collections Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments