~pythonregexp2.7/python/issue2636-11

« back to all changes in this revision

Viewing changes to Lib/bsddb/test/test_pickle.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-21 17:53:26 UTC
  • mfrom: (39025.1.14 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080921175326-92vaej2hc3yuecxb
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    cPickle = None
8
8
import unittest
9
9
 
10
 
try:
11
 
    # For Pythons w/distutils pybsddb
12
 
    from bsddb3 import db
13
 
except ImportError, e:
14
 
    # For Python 2.3
15
 
    from bsddb import db
16
 
 
17
 
from test_all import get_new_environment_path, get_new_database_path
18
 
 
19
 
try:
20
 
    from bsddb3 import test_support
21
 
except ImportError:
22
 
    from test import test_support
23
 
 
 
10
from test_all import db, test_support, get_new_environment_path, get_new_database_path
24
11
 
25
12
#----------------------------------------------------------------------
26
13