You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix lazy_list.pyx doctests to use picklable iterators
Instead of using try-except to catch unpicklable iterators like
itertools.count (which can't be pickled in Python 3.14), changed
the doctests to use list iterators which ARE picklable.
This properly tests that the __reduce__ method works correctly
while being compatible with Python 3.14's removal of pickle
support for itertools objects.
0 commit comments