Opened 17 years ago

Closed 17 years ago

#3738 closed (fixed)

Small comment change in query.py parse_lookup()

Reported by: Tim Chase Owned by: Adrian Holovaty
Component: Core (Other) Version: dev
Severity: Keywords: query.py comment parse_lookup
Cc: Triage Stage: Ready for checkin
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The comment around line 783 of
source:"../svn/django/trunk/django/db/models/query.py"
function parse_lookup()
states

 Returns a tuple of (tables, joins, where, params)

but the function only returns a tuple of (joins, where, params).

Solution: remove "tables, " from the comment on line 783

(Traq's URL expansion wants to put the above URL at /browser/... so the ".." is to move it back up in the /svn directory)

Attachments (1)

3738.diff (619 bytes ) - added by Simon G. <dev@…> 17 years ago.

Download all attachments as: .zip

Change History (3)

comment:1 by Simon G. <dev@…>, 17 years ago

Triage Stage: UnreviewedReady for checkin

by Simon G. <dev@…>, 17 years ago

Attachment: 3738.diff added

comment:2 by Russell Keith-Magee, 17 years ago

Resolution: fixed
Status: newclosed

(In [4754]) Fixed #3738 -- Minor inline documentation fix. Thanks, Simon.

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