Le Wed, 06 Jan 2010 12:03:36 +0100, wiso a écrit :

> from time import time
> t = time(); xxx=map(to_dict,l); print time() - t # 0.5 t = time();
> xxx=map(to_if,l); print time() - t   # 1.0

Don't define your own function just for attribute access. Instead just 
write:

xxx = map(month_dict.__getitem__, l)


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

Reply via email to