[Python-checkins] r79697 - python/trunk/Lib/bsddb/__init__.py

benjamin.peterson python-checkins at python.org
Sat Apr 3 17:44:56 CEST 2010


Author: benjamin.peterson
Date: Sat Apr  3 17:44:56 2010
New Revision: 79697

Log:
silence PyCObject warnings in bsddb

Modified:
   python/trunk/Lib/bsddb/__init__.py

Modified: python/trunk/Lib/bsddb/__init__.py
==============================================================================
--- python/trunk/Lib/bsddb/__init__.py	(original)
+++ python/trunk/Lib/bsddb/__init__.py	Sat Apr  3 17:44:56 2010
@@ -48,6 +48,7 @@
         warnings.warnpy3k("in 3.x, the bsddb module has been removed; "
                           "please use the pybsddb project instead",
                           DeprecationWarning, 2)
+    warnings.filterwarnings("*PyCObject*", DeprecationWarning, "_bsddb")
 
 try:
     if __name__ == 'bsddb3':


More information about the Python-checkins mailing list