mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
Everything worked in both the distutils distro and in Python 2.3cvs,
so merge from the bsddb-bsddb3-schizo-branch back to the trunk.
This commit is contained in:
parent
a6ae9a2128
commit
f71de3e9a0
18 changed files with 213 additions and 119 deletions
|
@ -5,8 +5,12 @@ import os
|
|||
import sys
|
||||
import unittest
|
||||
|
||||
from bsddb import db
|
||||
from bsddb import dbshelve
|
||||
try:
|
||||
# For Python 2.3
|
||||
from bsddb import db, dbshelve
|
||||
except ImportError:
|
||||
# For earlier Pythons w/distutils pybsddb
|
||||
from bsddb3 import db, dbshelve
|
||||
|
||||
from test.test_support import verbose
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue