~pythonregexp2.7/python/issue2636-01+09-01-01

« back to all changes in this revision

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

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-22 00:02:12 UTC
  • mfrom: (39022.1.34 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080922000212-7r0q4f4ugiq57jph
Merged in changes from the Atomic Grouping / Possessive Qualifiers branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
import unittest
2
2
import os, glob
3
3
 
4
 
try:
5
 
    # For Pythons w/distutils pybsddb
6
 
    from bsddb3 import db
7
 
except ImportError:
8
 
    # For Python 2.3
9
 
    from bsddb import db
10
 
 
11
 
from test_all import get_new_environment_path, get_new_database_path
12
 
 
13
 
try:
14
 
    from bsddb3 import test_support
15
 
except ImportError:
16
 
    from test import test_support
 
4
from test_all import db, test_support, get_new_environment_path, \
 
5
        get_new_database_path
17
6
 
18
7
#----------------------------------------------------------------------
19
8