> def leaders(sorted_list): > held = None > for phrase in held:
Ummm...that
for phrase in None:
doesn't do a whole lot other than give a traceback. :*)
I suspect you mean
for phrase in sorted_list:
no?
-tkc
--
http://mail.python.org/mailman/listinfo/python-list
