Skip to content

Instantly share code, notes, and snippets.

@ak1211
Created March 2, 2016 12:52
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 ak1211/142626a4f30c16d738b0 to your computer and use it in GitHub Desktop.
Save ak1211/142626a4f30c16d738b0 to your computer and use it in GitHub Desktop.
パイプを用意して,出力パイプをファイルディスクリプタ3番にする(もし'3>'の指定が無ければエラーになる)
pipR, pipW = os.pipe ()
os.close (pipR)
os.dup2 (3, pipW)
unterminated_file = os.fdopen (pipW, "w")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment