[Python-checkins] python/dist/src/Lib/bsddb __init__.py,1.16,1.17

nnorwitz@users.sourceforge.net nnorwitz at users.sourceforge.net
Thu Oct 20 06:36:11 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib/bsddb
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21720/Lib/bsddb

Modified Files:
	__init__.py 
Log Message:
Get BSD DB working most for version 3.2

Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/bsddb/__init__.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- __init__.py	3 Mar 2005 09:46:06 -0000	1.16
+++ __init__.py	20 Oct 2005 04:36:08 -0000	1.17
@@ -372,6 +372,8 @@
 try:
     import thread
     del thread
+    if db.version() < (3, 3, 0):
+        db.DB_THREAD = 0
 except ImportError:
     db.DB_THREAD = 0
 



More information about the Python-checkins mailing list