[Python-checkins] python/dist/src/Misc python.man,1.24,1.25

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sun, 28 Jul 2002 03:34:10 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv22720/Misc

Modified Files:
	python.man 
Log Message:
Patch #552812: Better description in "python -h" for -u.


Index: python.man
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/python.man,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** python.man	9 May 2002 14:33:18 -0000	1.24
--- python.man	28 Jul 2002 10:34:08 -0000	1.25
***************
*** 139,143 ****
  .TP
  .B \-u
! Force stdin, stdout and stderr to be totally unbuffered.
  .TP
  .B \-v
--- 139,147 ----
  .TP
  .B \-u
! Force stdin, stdout and stderr to be totally unbuffered.  Note that
! there is internal buffering in xreadlines(), readlines() and file-object
! iterators ("for line in sys.stdin") which is not influenced by this
! option.  To work around this, you will want to use "sys.stdin.readline()"
! inside a "while 1:" loop.
  .TP
  .B \-v