I have a large project consisting of sufficiently large number of modules, each printing something to the standard output. Now as the project has grown in size, there are large no. of print statements printing a lot on the std out which has made the program considerably slower.

So, I now want to decide at runtime whether or not to print anything to the stdout. I cannot make changes in the modules as there are plenty of them. (I know I can redirect the stdout to a file but even this is considerably slow.)

So my question is how do I redirect the stdout to nothing ie how do I make the print statement do nothing?

# I want to do something like this.
sys.stdout = None         # this obviously will give an error as Nonetype object does not have any write method.

Currently the only idea I have is to make a class which has a write method (which does nothing) and redirect the stdout to an instance of this class.

class DontPrint(object):
    def write(*args): pass

dp = dontprint()
sys.stdout = a

Is there an inbuilt mechanism in python for this? Or is there something better than this?

link|improve this question

64% accept rate
feedback

4 Answers

Cross-platform:

import os
f = open(os.devnull, 'w')
sys.stdout = f

On Windows:

f = open('nul', 'w')
sys.stdout = f

On Linux:

f = open('/dev/null', 'w')
sys.stdout = f
link|improve this answer
9  
Use os.devnull instead of 'nul' or '/dev/null' and it will be pretty portable. Edit: For reference: docs.python.org/library/os.html#os.devnull – plundra Jul 18 '11 at 16:16
@plundra - I was already adding that when I saw your comment, thanks! – F.J Jul 18 '11 at 16:19
feedback

If you're in a unix environment (linux included), you can redirect output to /dev/null.

python myprogram.py > /dev/null
link|improve this answer
1  
Its better to have a solution which would work on all platforms. – Guanidene Jul 18 '11 at 16:16
@Guanidene, perhaps, but if he is the only person using his program, he can pretty much guarantee the environment. – Nick Radford Jul 18 '11 at 16:17
feedback

On your next project, use the logging module rather than printing crap to stdout/stderr.

link|improve this answer
feedback

Your class will work just fine (with the exception of the write() method name -- it needs to be called write(), lowercase). Just make sure you save a copy of sys.stdout in another variable.

If you're on a *NIX, you can do sys.stdout = open('/dev/null'), but this is less portable than rolling your own class.

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.