Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question

10 Answers

up vote 89 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'
share|improve this answer
20  
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
#!/usr/bin/env python -u doesn't work!! see here – wim Dec 10 '12 at 0:11
__getattr__ just to avoid inheritance?! – Halst Apr 24 at 7:33
# 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.

share|improve this answer
6  
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
5  
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
1  
@sorin: I see your point. I was testing with the intent to output binary. – Matt Joiner Jul 22 '11 at 3:49

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)

share|improve this answer
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.)

share|improve this answer

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

share|improve this answer

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)
share|improve this answer
1  
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
1  
There's a windows equivalent: stackoverflow.com/questions/881696/… – Tobu Jan 23 '11 at 1:41
6  
O_SYNC has nothing at all to do with userspace-level buffering that this question is asking about. – apenwarr Apr 25 '12 at 7:21

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__
share|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
1  
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

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.

share|improve this answer

Variant that works without crashing (at least on win32; python 2.7, ipython 0.12) then called subsequently (multiple times):

def DisOutBuffering():
    if sys.stdout.name == '<stdout>':
        sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)

    if sys.stderr.name == '<stderr>':
        sys.stderr = os.fdopen(sys.stderr.fileno(), 'w', 0)
share|improve this answer
Are you sure this is not buffered? – xiaomao Oct 21 '12 at 3:52

I would rather put my answer in How to flush output of Python print? or in Python's print function that flushes the buffer when it's called?, but since they were marked as duplicates of this one (what I do not agree), I'll answer it here.

Since Python 3.3 print() supports the keyword argument "flush" (see documentation):

print('Hello World!', flush=True)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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