mirror of
https://github.com/python/cpython.git
synced 2025-10-30 13:11:29 +00:00
Accept patch issue2426 by Paul Kippes (kippesp).
Adds sqlite3.Connection.iterdump to allow dumping of databases.
This commit is contained in:
parent
621cd26253
commit
b9803421d2
5 changed files with 76 additions and 2 deletions
|
|
@ -5,12 +5,13 @@
|
|||
except ImportError:
|
||||
raise TestSkipped('no sqlite available')
|
||||
from sqlite3.test import (dbapi, types, userfunctions, py25tests,
|
||||
factory, transactions, hooks, regression)
|
||||
factory, transactions, hooks, regression,
|
||||
dump)
|
||||
|
||||
def test_main():
|
||||
run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(),
|
||||
py25tests.suite(), factory.suite(), transactions.suite(),
|
||||
hooks.suite(), regression.suite())
|
||||
hooks.suite(), regression.suite(), dump.suite())
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_main()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue