Skip to content

Instantly share code, notes, and snippets.

@ov7a
Created September 20, 2013 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ov7a/6636954 to your computer and use it in GitHub Desktop.
Save ov7a/6636954 to your computer and use it in GitHub Desktop.
Python2.7 ability to pipeline stdout
import codecs, sys
sys.stdout = codecs.getwriter('utf8')(sys.stdout)
print 'ololo'
sys.stdout.flush()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment