Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #77123

Re: Reading from sys.stdin reads the whole file in

From Peter Otten <__peter__@web.de>
Subject Re: Reading from sys.stdin reads the whole file in
Date 2014-08-27 11:31 +0200
Organization None
References <53fd6a48$0$11111$c3e8da3@news.astraweb.com> <mailman.13497.1409125378.18130.python-list@python.org> <87a96qgwbl.fsf@elektro.pacujo.net>
Newsgroups comp.lang.python
Message-ID <mailman.13501.1409131921.18130.python-list@python.org> (permalink)

Show all headers | View raw


Marko Rauhamaa wrote:

> Peter Otten <__peter__@web.de>:
> 
>> In addition to what already has been said: you can switch off output
>> buffering of stdout/stderr with
>>
>> python -u out.py
>>
>> or by setting the PYTHONUNBUFFERED environment variable.
> 
> Very often such externalities are not in the control of the application
> developer.

Sometimes it's possible to use a wrapper script rather than to sprinkle your 
code with flush(). 

Sometimes the "offending" python script is not even written and maintained 
by you, and setting an environment variable may be a price you are willing 
to pay to keep it that way.

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Reading from sys.stdin reads the whole file in Steven D'Aprano <steve@pearwood.info> - 2014-08-27 05:19 +0000
  Re: Reading from sys.stdin reads the whole file in Marko Rauhamaa <marko@pacujo.net> - 2014-08-27 08:29 +0300
    Re: Reading from sys.stdin reads the whole file in Marko Rauhamaa <marko@pacujo.net> - 2014-08-27 08:31 +0300
    Re: Reading from sys.stdin reads the whole file in Steven D'Aprano <steve@pearwood.info> - 2014-08-27 06:37 +0000
      Re: Reading from sys.stdin reads the whole file in Chris Angelico <rosuav@gmail.com> - 2014-08-27 16:45 +1000
      Re: Reading from sys.stdin reads the whole file in Akira Li <4kir4.1i@gmail.com> - 2014-08-29 04:02 +0400
  Re: Reading from sys.stdin reads the whole file in Chris Angelico <rosuav@gmail.com> - 2014-08-27 16:02 +1000
  Re: Reading from sys.stdin reads the whole file in Peter Otten <__peter__@web.de> - 2014-08-27 09:42 +0200
    Re: Reading from sys.stdin reads the whole file in Marko Rauhamaa <marko@pacujo.net> - 2014-08-27 11:39 +0300
      Re: Reading from sys.stdin reads the whole file in Peter Otten <__peter__@web.de> - 2014-08-27 11:31 +0200

csiph-web