Hi,

I know that sometimes optimization is not good idea.
So I want to know what you think about this one:

we have code like this:
tables = []
for i in ... :
    tables.extend(...)


we optimize code like this:
tables = []
pfTablesExtend = tables.extend
for i in ... :
    pfTablesExtend(...)

I what to know is this bad idea? Say you opinion about that!

--
Best Regards
Darius Kučinskas

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

Reply via email to