Opened 11 years ago
Closed 11 years ago
#23972 closed Bug (invalid)
'naive' instead of 'native'
| Reported by: | Christian González | Owned by: | nobody |
|---|---|---|---|
| Component: | Documentation | Version: | dev |
| Severity: | Normal | Keywords: | typo |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | yes | UI/UX: | no |
Description (last modified by )
I'm not sure, but I think you meant "native datetimes" instead of "naive datetimes" in
https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-USE_TZ
https://docs.djangoproject.com/en/1.7/ref/settings/#std:setting-USE_TZ
and older...
Change History (2)
comment:1 by , 11 years ago
| Description: | modified (diff) |
|---|
comment:2 by , 11 years ago
| Resolution: | → invalid |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Hi,
The word here is correct. It refers to the fact that the datetime is not associated with a timezone (as opposed to an "aware" datetime).
See https://docs.python.org/3.4/library/datetime.html for more details.
Thanks.