in reply to Template Toolkit: silencing pop() and the other list virtual methods

Try this:
[% list = [1, 2, 3] %] [% undef = list.pop %]
If it gives you a warning you might have to improvise with something of this like:
[% [undef] = list.pop %]


Evan Carroll
www.EvanCarroll.com