Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a performance or code maintenance issue with using assert as part of the standard code instead of using it just for debugging purposes?

Is

assert x >= 0, 'x is less than zero'

better or worse than

if x < 0:
    raise Exception, 'x is less than zero'

Also, is there any way to set a business rule like if x < 0 raise error that is always checked without the try/except/finally so, if at anytime throughout the code x is less than 0 an error is raised, like if you set assert x < 0 at the start of a function, anywhere within the function where x becomes less then 0 an exception is raised?

share|improve this question
2  
Nitpick: Shouldn't that be "assert x >= 0, 'x is less than zero' ? – Ryan Ginstrom Dec 3 '09 at 9:18
14  
Not that I disagree with @Nadia's answer, but the title of your question and her answer bear no resemblance to one another. Rather than steal reputation from @Nadia by changing your accepted answer, perhaps re-phrase your question so it's not about assert vs. exception? As an aside, the performance answer to your original question is that asserts get optimized away, exception code paths have a small cost associated with them in production code. – Jeffrey Harris Dec 3 '09 at 16:00
"than" is still misspelled as "then" – Aaron May 10 '12 at 5:07

7 Answers

up vote 59 down vote accepted

To be able to automatically throw an error when x become less than zero throughout the function. You can use class descriptors. Here is an example:

class ZeroException(Exception):
    pass

class variable(object):
    def __init__(self, value=0):
        self.__x = value

    def __set__(self, obj, value):
        if value < 0:
            raise ZeroException('x is less than zero')

        self.__x  = value

    def __get__(self, obj, objType):
        return self.__x

class MyClass(object):
    x = variable()

>>> m = MyClass()
>>> m.x = 10
>>> m.x -= 20
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "my.py", line 7, in __set__
    raise ZeroException('x is less than zero')
ZeroException: x is less than zero
share|improve this answer
7  
Although properties are implemented as descriptors, I wouldn't call this an example of using them. This is more an example of properties in and of themselves: docs.python.org/library/functions.html#property – Jason Baker Jun 3 '09 at 13:43
1  
The properties should be used within MyClass when setting x. This solution is too general. – omouse Dec 18 '10 at 21:57

Asserts should be used to test conditions that should never happen. The purpose is to crash early in the case of a corrupt program state.

Exceptions should be used for errors that can conceivably happen, and you should almost always create your own Exception classes.


For example, if you're writing a function to read from a configuration file into a dict, improper formatting in the file should raise a ConfigurationSyntaxError, while you can assert that you're not about to return None.


In your example, if x is a value set via a user interface or from an external source, an exception is best.

If x is only set by your own code in the same program, go with an assertion.

share|improve this answer
15  
This is the right way to use asserts. They shouldn't be used to control program flow. – Thane Brimhall Oct 5 '12 at 22:08
+1 for the last paragraph - though you should explicitly mention that assert contains an implicit if __debug__ and may be optimized away - as John Mee's answer states – Tobias Kienzler Apr 9 at 5:47

"assert" statements are removed when the compilation is optimized. So, yes, there are both performance and functional differences.

The current code generator emits no code for an assert statement when optimization is requested at compile time. - Python 2.6.4 Docs

If you use assert to implement application functionality, then optimize the deployment to production, you will be plagued by "but-it-works-in-dev" defects.

See PYTHONOPTIMIZE and -O -OO

share|improve this answer

The only thing that's really wrong with this approach is that it's hard to make a very descriptive exception using assert statements. If you're looking for the simpler syntax, remember you can also do something like this:

class XLessThanZeroException(Exception):
    pass

def CheckX(x):
    if x < 0:
        raise XLessThanZeroException()

def foo(x):
    CheckX(x)
    #do stuff here

Another problem is that using assert for normal condition-checking is that it makes it difficult to disable the debugging asserts using the -O flag.

share|improve this answer
4  
You can append an error message to an assertion. It's the second parameter. That will make it descriptive. – Raffi Khatchadourian Oct 13 '11 at 20:10

In addition to the other answers, asserts themselves throw exceptions, but only AssertionErrors. From a utilitarian standpoint, assertions aren't suitable for when you need fine grain control over which exceptions you catch.

share|improve this answer
Right. It would seem silly to catch assertion error exceptions in the caller. – Raffi Khatchadourian Oct 13 '11 at 20:11

There's a framework called JBoss Drools for java that does runtime monitoring to assert business rules, which answers the second part of your question. However, I am unsure if there is such a framework for python.

share|improve this answer

As has been said previously, assertions should be used when your code SHOULD NOT ever reach a point, meaning there is a bug there. Probably the most useful reason I can see to use an assertion is an invariant/pre/postcondition. These are something that must be true at the start or end of each iteration of a loop or a function.

For example, a recursive function (2 seperate functions so 1 handles bad input and the other handles bad code, cause it's hard to distinguish with recursion). This would make it obvious if I forgot to write the if statement, what had gone wrong.

def SumToN(n):
    if n <= 0:
        raise ValueError, "N must be greater than or equal to 0"
    else:
        return RecursiveSum(n)

def RecursiveSum(n):
    #precondition: n >= 0
    assert(n >= 0)
    if n == 0:
        return 0
    return RecursiveSum(n - 1) + n
    #postcondition: returned sum of 1 to n

These loop invariants often can be represented with an assertion.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.