diff options
Diffstat (limited to 'Lib/bsddb')
-rw-r--r-- | Lib/bsddb/test/test_associate.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_basics.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_compare.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_cursor_pget_bug.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_dbobj.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_dbshelve.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_dbtables.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_env_close.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_join.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_lock.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_misc.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_pickle.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_recno.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_sequence.py | 2 | ||||
-rw-r--r-- | Lib/bsddb/test/test_thread.py | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/Lib/bsddb/test/test_associate.py b/Lib/bsddb/test/test_associate.py index 1c80a88293b..b9f250bbd76 100644 --- a/Lib/bsddb/test/test_associate.py +++ b/Lib/bsddb/test/test_associate.py @@ -27,7 +27,7 @@ except ImportError: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support #---------------------------------------------------------------------- diff --git a/Lib/bsddb/test/test_basics.py b/Lib/bsddb/test/test_basics.py index 6b99cc1fdfb..9c829bd915d 100644 --- a/Lib/bsddb/test/test_basics.py +++ b/Lib/bsddb/test/test_basics.py @@ -23,7 +23,7 @@ from bsddb.test.test_all import verbose try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support DASH = b'-' letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' diff --git a/Lib/bsddb/test/test_compare.py b/Lib/bsddb/test/test_compare.py index 2c9706a0d9f..e2562fbef88 100644 --- a/Lib/bsddb/test/test_compare.py +++ b/Lib/bsddb/test/test_compare.py @@ -19,7 +19,7 @@ except ImportError: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support lexical_cmp = cmp diff --git a/Lib/bsddb/test/test_cursor_pget_bug.py b/Lib/bsddb/test/test_cursor_pget_bug.py index 887a69e9e02..a06428ca3eb 100644 --- a/Lib/bsddb/test/test_cursor_pget_bug.py +++ b/Lib/bsddb/test/test_cursor_pget_bug.py @@ -9,7 +9,7 @@ from bsddb import db try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support #---------------------------------------------------------------------- diff --git a/Lib/bsddb/test/test_dbobj.py b/Lib/bsddb/test/test_dbobj.py index f67af409811..5f3170d0216 100644 --- a/Lib/bsddb/test/test_dbobj.py +++ b/Lib/bsddb/test/test_dbobj.py @@ -14,7 +14,7 @@ except ImportError: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support #---------------------------------------------------------------------- diff --git a/Lib/bsddb/test/test_dbshelve.py b/Lib/bsddb/test/test_dbshelve.py index a597154f58c..95f7ad16813 100644 --- a/Lib/bsddb/test/test_dbshelve.py +++ b/Lib/bsddb/test/test_dbshelve.py @@ -12,7 +12,7 @@ from bsddb import db, dbshelve try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support from bsddb.test.test_all import verbose diff --git a/Lib/bsddb/test/test_dbtables.py b/Lib/bsddb/test/test_dbtables.py index f1328f0c8cd..061a731954e 100644 --- a/Lib/bsddb/test/test_dbtables.py +++ b/Lib/bsddb/test/test_dbtables.py @@ -37,7 +37,7 @@ except ImportError: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support #---------------------------------------------------------------------- diff --git a/Lib/bsddb/test/test_env_close.py b/Lib/bsddb/test/test_env_close.py index 9f7c85324a5..48096856b0b 100644 --- a/Lib/bsddb/test/test_env_close.py +++ b/Lib/bsddb/test/test_env_close.py @@ -18,7 +18,7 @@ except ImportError: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support from bsddb.test.test_all import verbose diff --git a/Lib/bsddb/test/test_join.py b/Lib/bsddb/test/test_join.py index 311835a85fd..de674eeb7a6 100644 --- a/Lib/bsddb/test/test_join.py +++ b/Lib/bsddb/test/test_join.py @@ -21,7 +21,7 @@ from bsddb import db, dbshelve, StringKeys try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support #---------------------------------------------------------------------- diff --git a/Lib/bsddb/test/test_lock.py b/Lib/bsddb/test/test_lock.py index 1259d03e74c..5baba691289 100644 --- a/Lib/bsddb/test/test_lock.py +++ b/Lib/bsddb/test/test_lock.py @@ -26,7 +26,7 @@ except ImportError: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support #---------------------------------------------------------------------- diff --git a/Lib/bsddb/test/test_misc.py b/Lib/bsddb/test/test_misc.py index 0d812888eb9..03c08f427ee 100644 --- a/Lib/bsddb/test/test_misc.py +++ b/Lib/bsddb/test/test_misc.py @@ -17,7 +17,7 @@ except ImportError: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support #---------------------------------------------------------------------- diff --git a/Lib/bsddb/test/test_pickle.py b/Lib/bsddb/test/test_pickle.py index f4c34ab3a77..c1175e63320 100644 --- a/Lib/bsddb/test/test_pickle.py +++ b/Lib/bsddb/test/test_pickle.py @@ -16,7 +16,7 @@ except ImportError as e: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support #---------------------------------------------------------------------- diff --git a/Lib/bsddb/test/test_recno.py b/Lib/bsddb/test/test_recno.py index 6855d18a3d2..3bc2f2d9671 100644 --- a/Lib/bsddb/test/test_recno.py +++ b/Lib/bsddb/test/test_recno.py @@ -21,7 +21,7 @@ except ImportError: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' diff --git a/Lib/bsddb/test/test_sequence.py b/Lib/bsddb/test/test_sequence.py index 90be5f68f91..2e9c99303c4 100644 --- a/Lib/bsddb/test/test_sequence.py +++ b/Lib/bsddb/test/test_sequence.py @@ -14,7 +14,7 @@ from bsddb.test.test_all import verbose try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support class DBSequenceTest(unittest.TestCase): diff --git a/Lib/bsddb/test/test_thread.py b/Lib/bsddb/test/test_thread.py index 51ed0f52fb0..e39124eaf62 100644 --- a/Lib/bsddb/test/test_thread.py +++ b/Lib/bsddb/test/test_thread.py @@ -36,7 +36,7 @@ except ImportError: try: from bsddb3 import test_support except ImportError: - from test import test_support + from test import support as test_support #---------------------------------------------------------------------- |