Closed lonnen closed 2 years ago
this should have always been raise StopIteration, but even that does not work properly in python 3.6 and higher becuase of PEP 479, which recommends replacing raise StopIteration with return
raise StopIteration
return
fixes issue #199
this should have always been
raise StopIteration
, but even that does not work properly in python 3.6 and higher becuase of PEP 479, which recommends replacingraise StopIteration
withreturn
fixes issue #199