Opened 8 years ago
Closed 8 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 , 8 years ago
comment:3 by , 8 years ago
| Resolution: | → invalid |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
The documentation says, "This function assumes that value is a datetime." Do you have a compelling use case to add support for
datetime.date?