Opened 14 years ago
Closed 14 years ago
#15972 closed Cleanup/optimization (invalid)
Error in documentation on web site
Reported by: | Owned by: | otov4its | |
---|---|---|---|
Component: | Documentation | Version: | 1.3 |
Severity: | Normal | Keywords: | documentation, F object |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
In http://docs.djangoproject.com/en/1.3/topics/db/queries/#query-expressions wrote: from django.db.models import F
But F object actually in django.db.models.expressions
Note:
See TracTickets
for help on using tickets.
Both work, but
from django.db.models import F
is the preferred way to importF
as Django's internal module structure may change.