home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Demo / rsa / assert.py next >
Text File  |  1992-12-09  |  147b  |  13 lines

  1.  
  2.  
  3. error = 'assert.error'
  4.  
  5. def assert(value):
  6.     if value:
  7.         return
  8.     raise error, 'Assertion failed'
  9.  
  10. def fatal(msg):
  11.     print 'FATAL:', msg
  12.     assert(0)
  13.