Opened 12 years ago

Closed 11 years ago

#18051 closed Cleanup/optimization (fixed)

flatten_fieldsets error

Reported by: Riccardo Di Virgilio Owned by: mateusgondim
Component: contrib.admin Version: 1.4
Severity: Normal Keywords:
Cc: nick.sandford@… Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

hi when flattening fieldsets django checks if a fieldset has a line

if type(field) == tuple:

i've got a lot of errors because i often generate fieldsets from code, and sometime i must use list to declare lines.

maybe to avoid list problems it's better to change this line of code to

if type(field) in (tuple, list):

Attachments (2)

ticket18051.diff (568 bytes ) - added by mateusgondim 12 years ago.
I followed the above suggestion and replaced that line with the isinstance checking for list and tuples
ticket18051-2.diff (2.1 KB ) - added by mateusgondim 12 years ago.
Added tests.

Download all attachments as: .zip

Change History (8)

comment:1 by Claude Paroz, 12 years ago

Triage Stage: UnreviewedAccepted
Type: UncategorizedCleanup/optimization

It seems that the pattern isinstance(field, (list, tuple)) is widely used in Django.

comment:2 by mateusgondim, 12 years ago

Owner: changed from nobody to mateusgondim
Status: newassigned

by mateusgondim, 12 years ago

Attachment: ticket18051.diff added

I followed the above suggestion and replaced that line with the isinstance checking for list and tuples

comment:3 by mateusgondim, 12 years ago

Has patch: set

comment:4 by Julien Phalip, 12 years ago

Easy pickings: set
Needs tests: set

The patch looks good. Could you add some tests for it? Thanks!

by mateusgondim, 12 years ago

Attachment: ticket18051-2.diff added

Added tests.

comment:5 by Nick Sandford, 11 years ago

Cc: nick.sandford@… added
Needs tests: unset
Triage Stage: AcceptedReady for checkin

Patch with tests looks good.

comment:6 by Claude Paroz <claude@…>, 11 years ago

Resolution: fixed
Status: assignedclosed

In 013db6ba85fb880bd1f9a5ad2e91dc5c1efe197c:

Fixed #18051 -- Allowed admin fieldsets to contain lists

Thanks Ricardo di Virgilio for the report, Mateus Gondim for the
patch and Nick Sandford for the review.

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