In <[EMAIL PROTECTED]>, Bulba! wrote:

> I put those dictionaries into the list:
> 
>    oldl=[x for x in orig]  # where orig=csv.DictReader(ofile ...

If you don't "do" anything with each `x` you can write this as:

    oldl = list(orig)

Ciao,
        Marc 'BlackJack' Rintsch
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to