Mega Code Archive

 
Categories / Python Tutorial / Statement
 

AssertionError

try:     assert 1 == 0, 'One does not equal zero silly!' except AssertionError, args:     print '%s: %s' % (args.__class__.__name__, args)