Opened 18 years ago

Closed 18 years ago

Last modified 16 years ago

#2102 closed enhancement (fixed)

[patch] Enable the template for loop to work with a generator.

Reported by: dbm-django@… Owned by: Adrian Holovaty
Component: Template system Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The template system's for loop currently doesn't work with a generator because the length of the iterable is required for the variables forloop.revcounter, forloop.revcounter0 and forloop.last.

This patch simply checks for a len attribute on the iterable. If it doesn't exist, a list is created from the iterable and used in its place.

Attachments (1)

for_loop_with_generator.diff (465 bytes ) - added by dbm-django@… 18 years ago.

Download all attachments as: .zip

Change History (3)

by dbm-django@…, 18 years ago

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [3165]) Fixed #2102 -- Template system 'for' loops now support generators. Thanks, dbm-django@…

comment:3 by Karen Tracey, 16 years ago

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