Forgot your password?
typodupeerror

Comment Re:Exceptions! (Score 1) 662

"exceptions are (in almost all implementations) much slower"

In Python, it can be much faster to catch SOMEWHAT rare conditions in exceptions than by using if tests to test for those conditions. So, the maxim "exceptions are for exceptional conditions" isn't considered paramount in Python as it is for, say, C++. Exceptions are becoming something more people are using for flow control when it's convenient to do so.

Slashdot Top Deals

"Time is money and money can't buy you love and I love your outfit" - T.H.U.N.D.E.R. #1

Working...