Opened 7 years ago

Closed 7 years ago

Last modified 7 years ago

#28352 closed Cleanup/optimization (fixed)

QuerySet.values_list() docs documentation doesn't show correct return type

Reported by: Rich Elmes Owned by: Irindu Indeera
Component: Documentation Version: 1.11
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: yes
Easy pickings: yes UI/UX: no

Description (last modified by Tim Graham)

The values() documentation (docs/ref/models/querysets.txt) correctly shows the return type of the object:

>>> Entry.objects.values()
<QuerySet [{'blog_id': 1, 'headline': 'First Entry', ...}, ...]>

whereas the values_list() erroneously shows the return type as a list:

>>> Entry.objects.values_list('id', 'headline')
[(1, 'First entry'), ...]

Simply wrapping <QuerySet> around the list shown might save others getting as confused as I did.

Change History (8)

comment:1 by Rich Elmes, 7 years ago

Summary: values_list documentation doesn't show return type which can be confusingvalues_list documentation doesn't show correct return type which can be confusing

comment:2 by Tim Graham, 7 years ago

Description: modified (diff)
Easy pickings: set
Summary: values_list documentation doesn't show correct return type which can be confusingQuerySet.values_list() docs documentation doesn't show correct return type
Triage Stage: UnreviewedAccepted

comment:3 by Irindu Indeera , 7 years ago

Owner: changed from nobody to Irindu Indeera
Status: newassigned

comment:4 by Irindu Indeera , 7 years ago

Hi Tim, I'd Like to work on this issue

comment:5 by Tim Graham, 7 years ago

Has patch: set
Patch needs improvement: set
Last edited 7 years ago by Tim Graham (previous) (diff)

comment:6 by Tim Graham <timograham@…>, 7 years ago

Resolution: fixed
Status: assignedclosed

In babe9e64:

Fixed #28352 -- Corrected QuerySet.values_list() return type in docs examples.

comment:7 by Tim Graham <timograham@…>, 7 years ago

In 2457c18:

Refs #28352 -- Corrected another QuerySet.values_list() return type in docs example.

comment:8 by Tim Graham <timograham@…>, 7 years ago

In fe7b456:

[1.11.x] Fixed #28352 -- Corrected QuerySet.values_list() return type in docs examples.

Backport of babe9e64a6172b09e7f70e8d8f01e67f2cb4176d and
2457c1866ef3586c56bd19aeaa554e78c1ed1875 from master

Note: See TracTickets for help on using tickets.
Back to Top