[EMAIL PROTECTED] writes:
> I think there is, for python. Not that I agree with it. The language
> doesn't prevent you from using the short one-liner style but the idioms
> prefer the line by line(and one single op/action per line) style.

Are you serious?!!  You're saying idiomatic Python prefers

     temp1 = a + b
     temp2 = c * d
     temp3 = temp1 + temp2
     x = temp3 + e

to

     x = a + b + (c * d) + e

???!!!

I don't think you look at the same Python code I do ;-).

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

Reply via email to