[EMAIL PROTECTED] (Aahz) writes:

> 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)
                             ^-- I meant obj!
>
> It could also be spelt:
>
> self.me = [ObjectProxy(v) for v in obj]
>
> which is my preferred spelling....

I was waiting patiently for this reply...  And your preferred spelling
is py3k-proof as well, of course.

I don't write map(lambda x: x+1, L) or map(itemgetter('x'), L) but I
like to use it when the first argument is a named function,
e.g. map(str, list_of_ints).

-- 
Arnaud
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to