﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
29190	timezone.is_aware() raises unhandled exception when receiving datetime.date object as argument	Dariem Pérez Herrera	nobody	"The exception in question that it raises is `AttributeError: 'datetime.date' object has no attribute 'utcoffset'`

How to reproduce:

{{{#!python
>>> from django.conf import settings
>>> settings.configure()
>>> from django.utils import timezone
>>> from datetime import date
>>> d = date(year=2018, month=3, day=30)
>>> timezone.is_aware(d)
}}}"	Bug	closed	Utilities	1.11	Normal	invalid	timezone date datetime		Unreviewed	0	0	0	0	0	0
