bruno at modulix wrote:
>   if type(arg) is type([]):

Just a tiny nitpick....
You can just use 'list' instead of 'type([])'

if type(arg) is list :
    # blah blah


Regards
Sreeram

Attachment: signature.asc
Description: OpenPGP digital signature

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

Reply via email to