View Single Post
  #8  
Old 03-23-2005, 10:45 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Sometimes python print statements are buffered. To flush them you can do the following:
Code:
import sys
.
.
.
print 'output'
sys.stdout.flush() #Flush print buffer
Try flushing after each call to print, this should fix your problem.
Reply With Quote