Skip to content

Instantly share code, notes, and snippets.

@kitsuyui
Created March 1, 2015 10:06
Show Gist options
  • Select an option

  • Save kitsuyui/4a87cb924e10c4266ccd to your computer and use it in GitHub Desktop.

Select an option

Save kitsuyui/4a87cb924e10c4266ccd to your computer and use it in GitHub Desktop.
Python で stdout/stderr のバッファを無効にするオプション ref: http://qiita.com/kitsuyui/items/7d1704850e503be8dd1c
$ python -c 'import time; print(1); time.sleep(3); print(2)'
1
2
$
$ python -c 'import time; print(1); time.sleep(3); print(2)' | cat
1
2
$
$ python -u -c 'import time; print(1); time.sleep(3); print(2)' | cat
1
2
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment