仕事で大量の通信記録データがあって、ちょっとした解析をしなければならないので
pygraphvizを入れてみました。
Ubuntu10.04でパッケージが見つかったのでインストールしてみたのですが、
/usr/lib/pymodules/python2.6/pygraphviz/agraph.py:1138: DeprecationWarning: os.popen3 is deprecated. Use the subprocess module.
child_stdin,child_stdout,child_stderr=os.popen3(cmd, 'b')
という警告が。面倒だったので、適当なパッチで逃げておきました。
1135d1134
< import subprocess
1139,1140c1138
< # child_stdin,child_stdout,child_stderr=os.popen3(cmd, 'b')
< child_stdin,child_stdout,child_stderr=subprocess.Popen(cmd, 'b')
---
> child_stdin,child_stdout,child_stderr=os.popen3(cmd, 'b')
どうにか黙って動いている模様。