[Python-checkins] CVS: python/dist/src/Lib/distutils cmd.py,1.27,1.28
Neil Schemenauer
nascheme@users.sourceforge.net
Wed, 29 Aug 2001 16:57:24 -0700
Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory usw-pr-cvs1:/tmp/cvs-serv7016/Lib/distutils
Modified Files:
cmd.py
Log Message:
Flush output more aggressively. This makes things look better if
the setup script is running from inside Vim.
Index: cmd.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/cmd.py,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** cmd.py 2001/03/22 03:48:31 1.27
--- cmd.py 2001/08/29 23:57:22 1.28
***************
*** 189,192 ****
--- 189,193 ----
if self.verbose >= level:
print msg
+ sys.stdout.flush()
def debug_print (self, msg):
***************
*** 197,200 ****
--- 198,202 ----
if DEBUG:
print msg
+ sys.stdout.flush()