up vote 43 down vote favorite
23
share [g+] share [fb]

Is output buffering enabled by default in Python's interpreter for sys.stdout ?

If the answer is positive, what are all the ways to disable it ?

Suggestions so far:

  1. Use the -u command line switch
  2. Wrap sys.stdout in an object that flushes after every write
  3. Set PYTHONUNBUFFERED env var
  4. sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)

Is there any other way to set some global flag in sys / sys.stdout programmatically during execution ?

link|improve this question

feedback

9 Answers

up vote 40 down vote accepted

From Magnus Lycka answer on a mailing list:

You can skip buffering for a whole python process using "python -u" (or#!/usr/bin/env python -u etc) or by setting the environment variable PYTHONUNBUFFERED.

You could also replace sys.stdout with some other stream like wrapper which does a flush after every call.

>>> class Unbuffered:
..     def __init__(self, stream):
..         self.stream = stream
..     def write(self, data):
..         self.stream.write(data)
..         self.stream.flush()
..     def __getattr__(self, attr):
..         return getattr(self.stream, attr)
..
>>> import sys
>>> sys.stdout=Unbuffered(sys.stdout)
>>> print 'Hello'
link|improve this answer
5  
Original sys.stdout is still available as sys.__stdout__. Just in case you need it =) – Antti Rasinen Sep 20 '08 at 9:26
This the solution that I used when I ran into problems with print statements being buffered. Worked like a charm. – Ryan Sep 22 '08 at 3:19
That code is a miracle worker! – fixxxer Mar 3 '11 at 16:54
feedback
# reopen stdout file descriptor with write mode
# and 0 as the buffer size (unbuffered)
sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)

Credits: "Sebastian", somewhere on the Python mailing list.

link|improve this answer
2  
This doesn't work anymore in Python 3, see PEP 3116. – sorin Jun 30 '10 at 10:10
@sorin: Yes it does. Please explain your claim. – Matt Joiner Jul 5 '11 at 1:00
1  
On Python 3 the above line will throw an exception: ValueError: can't have unbuffered text I/O. – sorin Jul 5 '11 at 6:38
@sorin: I see your point. I was testing with the intent to output binary. – Matt Joiner Jul 22 '11 at 3:49
feedback

You can also use fcntl to change the file flags in-fly.

fl = fcntl.fcntl(fd.fileno(), fcntl.F_GETFL)
fl |= os.O_SYNC # or os.O_DSYNC (if you don't care the file timestamp updates)
fcntl.fcntl(fd.fileno(), fcntl.F_SETFL, fl)
link|improve this answer
isn't this *nix only? – Eli Bendersky Nov 15 '09 at 4:45
ah... that's probably right. – jimx Nov 15 '09 at 5:34
There's a windows equivalent: stackoverflow.com/questions/881696/… – Tobu Jan 23 '11 at 1:41
feedback

Yes, it is.

You can disable it on the commandline with the "-u" switch.

Alternatively, you could call .flush() on sys.stdout on every write (or wrap it with an object that does this automatically)

link|improve this answer
feedback

Yes, it is enabled by default. You can disable it by using the -u option on the command line when calling python.

link|improve this answer
feedback

One way to get unbuffered output would be to use sys.stderr instead of sys.stdout or to simply call sys.stdout.flush() to explicitly force a write to occur.

You could easily redirect everything printed by doing:

import sys; sys.stdout = sys.stderr
print "Hello World!"

Or to redirect just for a particular print statement:

print >>sys.stderr, "Hello World!"

To reset stdout you can just do:

sys.stdout = sys.__stdout__
link|improve this answer
1  
This might get very confusing when you then later try to capture the output using standard redirection, and find you are capturing nothing! p.s. your stdout is being bolded and stuff. – freespace Sep 20 '08 at 10:00
One big caution about selectively printing to stderr is that this causes the lines to appear out of place, so unless you also have timestamp this could get very confusing. – haridsv Oct 30 '11 at 18:13
feedback

You can create an unbuffered file and assign this file to sys.stdout.

import sys 
myFile= open( "a.log", "w", 0 ) 
sys.stdout= myFile

You can't magically change the system-supplied stdout; since it's supplied to your python program by the OS.

link|improve this answer
feedback
def disable_stdout_buffering():
    # Appending to gc.garbage is a way to stop an object from being
    # destroyed.  If the old sys.stdout is ever collected, it will
    # close() stdout, which is not good.
    gc.garbage.append(sys.stdout)
    sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)

# Then this will give output in the correct order:
disable_stdout_buffering()
print "hello"
subprocess.call(["echo", "bye"])

Without saving the old sys.stdout, disable_stdout_buffering() isn't idempotent, and multiple calls will result in an error like this:

Traceback (most recent call last):
  File "test/buffering.py", line 17, in <module>
    print "hello"
IOError: [Errno 9] Bad file descriptor
close failed: [Errno 9] Bad file descriptor

Another possibility is:

def disable_stdout_buffering():
    fileno = sys.stdout.fileno()
    temp_fd = os.dup(fileno)
    sys.stdout.close()
    os.dup2(temp_fd, fileno)
    os.close(temp_fd)
    sys.stdout = os.fdopen(fileno, "w", 0)

(Appending to gc.garbage is not such a good idea because it's where unfreeable cycles get put, and you might want to check for those.)

link|improve this answer
feedback

@Sebastjan Trepča , with ref to your solution with unbuffered class I have a query. I tried to implement the same for my requirement, which is to : execute a csh script using subprocess and then display the output(as is seen in terminal) real time on a tkinter widget(text widget).

sys.stdout=Unbuffered(test.stdout.readline()) #test->subprocess.popen()
 line = sys.stdout
        cnt += 1
        if line == "":
            break
        else:   
        txt['state'] = 'normal' #txt->text widget
        txt.insert(cnt,line)
  txt['state'] = 'disabled'

The code snippet above is running in a while loop. on execution i get an error:

      File "./temp.py", line 45, in __getattr__
        return getattr(self.stream, attr)
      RuntimeError: maximum recursion depth exceeded

Please Advice whats wrong with my approach. Thanks

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.