python2.6になって、md5モジュールとshaモジュールをインポートすると >>> import md5 __main__:1: DeprecationWarning: the md5 module is deprecated; use hashlib instead >>> import sha __main__:1: DeprecationWarning: the sha module is deprecated; use the hashlib module instead ワーニングが出てくる。ワーニングは出るけど、使えない事はない。しかし、これがpython3.0だと >>> import md5 Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No mo

