~ubuntu-branches/ubuntu/oneiric/python2.6/oneiric

« back to all changes in this revision

Viewing changes to Lib/test/test_bsddb.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-08-07 20:03:08 UTC
  • mfrom: (10.1.27 sid)
  • Revision ID: james.westby@ubuntu.com-20100807200308-bwsyymoc4donr9a9
Tags: 2.6.6~rc1-1ubuntu1
* Merge with Debian; remaining changes:
  - Regenerate the control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
import unittest
10
10
from test import test_support
11
11
 
 
12
# Skip test if _bsddb wasn't built.
 
13
test_support.import_module('_bsddb')
 
14
 
 
15
bsddb = test_support.import_module('bsddb', deprecated=True)
 
16
# Just so we know it's imported:
 
17
test_support.import_module('dbhash', deprecated=True)
 
18
 
 
19
 
12
20
class TestBSDDB(unittest.TestCase):
13
21
    openflag = 'c'
14
22