In article <[EMAIL PROTECTED]>,
Arnaud Delobelle  <[EMAIL PROTECTED]> wrote:
>Joshua Kugler <[EMAIL PROTECTED]> writes:
>>
>>             self.me = []
>>             for v in obj:
>>                 self.me.append(ObjectProxy(v))
>
>Note that is could be spelt:
>
>self.me = map(ObjectProxy, v)

It could also be spelt:

self.me = [ObjectProxy(v) for v in obj]

which is my preferred spelling....
-- 
Aahz ([EMAIL PROTECTED])           <*>         http://www.pythoncraft.com/

Why is this newsgroup different from all other newsgroups?  
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to