maxfischer2781/backports.range

Iterators are not pickle able

maxfischer2781 opened this issue · 1 comments

The range class uses generators for both __iter__ and __reversed__, which are not pickle-able. Python 3.6 requires these iterators to be pickle-able.

Fixed, iterators for range are now pickle-able objects.