Opened 16 years ago
Closed 16 years ago
#13185 closed (invalid)
optiongroups for ChoiceField - any iterable?
| Reported by: | Paul Garner | Owned by: | nobody |
|---|---|---|---|
| Component: | Documentation | Version: | 1.2-beta |
| Severity: | Keywords: | ||
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
The documentation for choices of a ChoiceField says you can use any iterable to make a nested structure to represent optiongroups... not necessarily a list or tuple.
In the code for ChoiceField.valid_value it uses this test though:
if type(v) in (tuple, list):
Seems like maybe it should use some kind of is_iterable() test function instead if it is to match the docs?
Change History (2)
comment:1 by , 16 years ago
comment:2 by , 16 years ago
| Resolution: | → invalid |
|---|---|
| Status: | new → closed |
Agreed. Without a concrete use case, this is just shuffling deckchairs.
Note:
See TracTickets
for help on using tickets.
Is there a real usecase for this, or just "architectural wankery", as they say :)?