Luke Thomas Mergner wrote:
Hi,

I am having trouble comparing two datetime objects.

No you're not. You're having trouble comparing a datetime and a date object.

[...]
But when I compare them, it always returns false because datetime.date does
not seem to compare to datetime.datetime...

Use date_obj.date() to return a date object without the times, then compare
that to the date objects sqlalchemy gives you.



--
Steven

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to