Update bsddb code to version 4.7.3pre2. This code should

be compatible with Python 3.0, also.

  http://www.jcea.es/programacion/pybsddb.htm#bsddb3-4.7.3
This commit is contained in:
Jesus Cea 2008-08-31 14:00:51 +00:00
parent 82358691f7
commit 4907d27c1f
27 changed files with 1020 additions and 447 deletions

View file

@ -1,19 +1,8 @@
import unittest
import os, glob
try:
# For Pythons w/distutils pybsddb
from bsddb3 import db
except ImportError:
# For Python 2.3
from bsddb import db
from test_all import get_new_environment_path, get_new_database_path
try:
from bsddb3 import test_support
except ImportError:
from test import test_support
from test_all import db, test_support, get_new_environment_path, \
get_new_database_path
#----------------------------------------------------------------------