From c64389bb8a901a3899e7c58cf83a00381dea738a Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Tue, 21 Oct 2014 16:53:25 -0700 Subject: [PATCH] Remove notes about datetime.date objects and timezone matching. Issues #278 and #279 have been filed to address. --- regression/datastore.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/regression/datastore.py b/regression/datastore.py index 047b6f586dfe0..46f6b43bbdddb 100644 --- a/regression/datastore.py +++ b/regression/datastore.py @@ -33,9 +33,6 @@ def _get_post(self, name=None, key_id=None, post_content=None): post_content = post_content or { 'title': 'How to make the perfect pizza in your grill', 'tags': ['pizza', 'grill'], - # NOTE: We don't support datetime.date, but should. - # NOTE: Without a tz, assertEqual fails with - # "can't compare offset-naive and offset-aware datetimes" 'publishedAt': datetime.datetime(2001, 1, 1, tzinfo=pytz.utc), 'author': 'Silvano', 'isDraft': False,