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
What steps will reproduce the problem?
This code:
dates = query(directories).where(is_date).order_by()
for date in dates:
pass
doesn't enter the loop (the sequence is empty),
whereas this code does:
dates = query(directories).where(is_date).order_by().to_list()
for date in dates:
pass
Original issue reported on code.google.com by robert.smallshire@gmail.com on 8 Nov 2011 at 9:00
The text was updated successfully, but these errors were encountered:
I think this is happening in the debugger because either __str__() or __repr_()
- whichever the debugger is calling to display values is not idempotent.
Original comment by robert.smallshire@gmail.com on 11 Nov 2011 at 6:33
Original issue reported on code.google.com by
robert.smallshire@gmail.com
on 8 Nov 2011 at 9:00The text was updated successfully, but these errors were encountered: