Commit fa352cdd authored by Tim Peters's avatar Tim Peters

More minor fiddling.

parent 811e5ed2
......@@ -15,7 +15,7 @@ r"""
Multi-database tests
====================
Multi-database support adds the ability to tie multiple database into a
Multi-database support adds the ability to tie multiple databases into a
collection.
Creating a multi-database starts with creating a named DB:
......@@ -53,6 +53,11 @@ Traceback (most recent call last):
...
ValueError: database_name 'root' already in databases
Because that failed, db.databases wasn't changed:
>>> len(db.databases) # still 2
2
You can (still) get a connection to a database this way:
>>> cn = db.open()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment