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: use return instead of raise StopIteration in QuerySet.__iter__
Per PEP 479, StopIteration raised inside a generator is converted to
RuntimeError. QuerySet.__iter__ is a generator and was raising
StopIteration to handle 400006 (invalid page number) errors, causing
RuntimeError for callers iterating endpoints that don't support
pagination past the last page.
Fixes#1786
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments