Is it more appropriate to do this:

while 1:
     if x:
         return x

Or this:

while 1:
     if x:
         break
return x

Or, does it matter?
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to