home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / diveintopython / examples / kgp / stderr.py < prev    next >
Encoding:
Text File  |  2002-02-21  |  107 b   |  6 lines

  1. import sys
  2.  
  3. fsock = open('error.log', 'w')
  4. sys.stderr = fsock
  5. raise Exception, 'this error will be logged'
  6.