diff --git a/Lib/sqlite3/test/__init__.py b/Lib/sqlite3/test/__init__.py deleted file mode 100644 diff --git a/Lib/test/test_sqlite.py b/Lib/test/test_sqlite3/__init__.py rename from Lib/test/test_sqlite.py rename to Lib/test/test_sqlite3/__init__.py --- a/Lib/test/test_sqlite.py +++ b/Lib/test/test_sqlite3/__init__.py @@ -4,9 +4,9 @@ test.support.import_module('_sqlite3') import sqlite3 -from sqlite3.test import (dbapi, types, userfunctions, - factory, transactions, hooks, regression, - dump) +from test.test_sqlite3 import (dbapi, types, userfunctions, + factory, transactions, hooks, regression, + dump) def test_main(): if test.support.verbose: diff --git a/Lib/sqlite3/test/dbapi.py b/Lib/test/test_sqlite3/dbapi.py rename from Lib/sqlite3/test/dbapi.py rename to Lib/test/test_sqlite3/dbapi.py diff --git a/Lib/sqlite3/test/dump.py b/Lib/test/test_sqlite3/dump.py rename from Lib/sqlite3/test/dump.py rename to Lib/test/test_sqlite3/dump.py diff --git a/Lib/sqlite3/test/factory.py b/Lib/test/test_sqlite3/factory.py rename from Lib/sqlite3/test/factory.py rename to Lib/test/test_sqlite3/factory.py diff --git a/Lib/sqlite3/test/hooks.py b/Lib/test/test_sqlite3/hooks.py rename from Lib/sqlite3/test/hooks.py rename to Lib/test/test_sqlite3/hooks.py diff --git a/Lib/sqlite3/test/regression.py b/Lib/test/test_sqlite3/regression.py rename from Lib/sqlite3/test/regression.py rename to Lib/test/test_sqlite3/regression.py diff --git a/Lib/sqlite3/test/transactions.py b/Lib/test/test_sqlite3/transactions.py rename from Lib/sqlite3/test/transactions.py rename to Lib/test/test_sqlite3/transactions.py diff --git a/Lib/sqlite3/test/types.py b/Lib/test/test_sqlite3/types.py rename from Lib/sqlite3/test/types.py rename to Lib/test/test_sqlite3/types.py diff --git a/Lib/sqlite3/test/userfunctions.py b/Lib/test/test_sqlite3/userfunctions.py rename from Lib/sqlite3/test/userfunctions.py rename to Lib/test/test_sqlite3/userfunctions.py