zrcoffee 发表于 2013-1-16 02:11:53

DeprecationWarning: the md5 module is deprecated

Apache的error_log:
/usr/local/lib/python2.6/site-packages/mod_python/importer.py:32: DeprecationWarning: the md5 module is deprecated; use hashlib instead import md5

解决办法:
GOOGLE下发现这是个BUG,在Red Hat Bugzilla找到了解决办法:https://bugzilla.redhat.com/show_bug.cgi?id=526062
 
mod_python patch:

--- mod_python-3.3.1/lib/python/mod_python/importer.py+++ mod_python-3.3.1/lib/python/mod_python/importer.py@@ -29,7 +29,10 @@ import new import types import pdb import imp-import md5+try:+    from hashlib import md5+except ImportError:+    from md5 import md5 import time import string import StringIO@@ -969,7 +972,7 @@ class _ModuleCache:         # name which is a filesystem path. Hope MD5 hex         # digest is okay. -      return self._prefix + md5.new(file).hexdigest()+      return self._prefix + md5(file).hexdigest()   _global_modules_cache = _ModuleCache() 
页: [1]
查看完整版本: DeprecationWarning: the md5 module is deprecated