Opened 6 years ago

Closed 6 years ago

#29190 closed Bug (invalid)

timezone.is_aware() raises unhandled exception when receiving datetime.date object as argument

Reported by: Dariem Pérez Herrera Owned by: nobody
Component: Utilities Version: 1.11
Severity: Normal Keywords: timezone date datetime
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The exception in question that it raises is AttributeError: 'datetime.date' object has no attribute 'utcoffset'

How to reproduce:

>>> 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)

Change History (3)

comment:1 by Tim Graham, 6 years ago

The documentation says, "This function assumes that value is a datetime." Do you have a compelling use case to add support for datetime.date?

comment:2 by Derek Shoemaker, 6 years ago

(whoops, didn't see someone already commented)

Last edited 6 years ago by Derek Shoemaker (previous) (diff)

comment:3 by Tim Graham, 6 years ago

Resolution: invalid
Status: newclosed
Note: See TracTickets for help on using tickets.
Back to Top