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 / stdout.py < prev    next >
Encoding:
Text File  |  2002-02-21  |  189 b   |  10 lines

  1. import sys
  2.  
  3. print 'Dive in'
  4. saveout = sys.stdout
  5. fsock = open('out.log', 'w')
  6. sys.stdout = fsock
  7. print 'This message will be logged instead of displayed'
  8. sys.stdout = saveout
  9. fsock.close()
  10.