Move anydbm and whichdb to dbm.__init__.

This commit is contained in:
Brett Cannon 2008-05-03 23:22:37 +00:00
parent 4e23bb4aee
commit 2f40fa9044
1 changed files with 5 additions and 5 deletions

View File

@ -763,18 +763,18 @@ dbm package
================= ===============================
Current Name Replacement Name
================= ===============================
anydbm dbm.tools [1]_
anydbm dbm.__init__ [1]_
dbhash dbm.bsd
dbm dbm.ndbm
dumbdm dbm.dumb
gdbm dbm.gnu
whichdb dbm.tools [1]_
whichdb dbm.__init__ [1]_
================= ===============================
.. [1] ``dbm.tools`` can combine ``anybdbm`` and ``whichdb`` since the public
API for both modules has no name conflict and the two modules have
closely related usage.
.. [1] ``dbm.__init__`` can combine ``anybdbm`` and ``whichdb`` since
the public API for both modules has no name conflict and the
two modules have closely related usage.