File tree 6 files changed +28
-6
lines changed
6 files changed +28
-6
lines changed Original file line number Diff line number Diff line change 1
-
2
1
:mod: `anydbm ` --- Generic access to DBM-style databases
3
2
=======================================================
4
3
5
4
.. module :: anydbm
6
5
:synopsis: Generic interface to DBM-style database modules.
7
6
8
7
8
+ .. note ::
9
+ The :mod: `anydbm ` module has been renamed to :mod: `dbm ` in Python 3.0. The
10
+ :term: `2to3 ` tool will automatically adapt imports when converting your
11
+ sources to 3.0.
12
+
9
13
.. index ::
10
14
module: dbhash
11
15
module: bsddb
Original file line number Diff line number Diff line change 1
-
2
1
:mod: `dbhash ` --- DBM-style interface to the BSD database library
3
2
=================================================================
4
3
5
4
.. module :: dbhash
6
5
:synopsis: DBM-style interface to the BSD database library.
7
6
..
sectionauthor ::
Fred L. Drake, Jr. <[email protected] >
8
7
8
+ .. note ::
9
+ The :mod: `dbhash ` module has been renamed to :mod: `dbm.bsd ` in Python 3.0.
10
+ The :term: `2to3 ` tool will automatically adapt imports when converting your
11
+ sources to 3.0.
9
12
10
13
.. index :: module: bsddb
11
14
Original file line number Diff line number Diff line change 1
-
2
1
:mod: `dbm ` --- Simple "database" interface
3
2
==========================================
4
3
5
4
.. module :: dbm
6
5
:platform: Unix
7
6
:synopsis: The standard "database" interface, based on ndbm.
8
7
8
+ .. note ::
9
+ The :mod: `dbm ` module has been renamed to :mod: `dbm.ndbm ` in Python 3.0. The
10
+ :term: `2to3 ` tool will automatically adapt imports when converting your
11
+ sources to 3.0.
12
+
9
13
10
14
The :mod: `dbm ` module provides an interface to the Unix "(n)dbm" library. Dbm
11
15
objects behave like mappings (dictionaries), except that keys and values are
Original file line number Diff line number Diff line change 1
-
2
1
:mod: `dumbdbm ` --- Portable DBM implementation
3
2
==============================================
4
3
5
4
.. module :: dumbdbm
6
5
:synopsis: Portable implementation of the simple DBM interface.
7
6
7
+ .. note ::
8
+ The :mod: `dumbdbm ` module has been renamed to :mod: `dbm.dumb ` in Python 3.0.
9
+ The :term: `2to3 ` tool will automatically adapt imports when converting your
10
+ sources to 3.0.
8
11
9
12
.. index :: single: databases
10
13
Original file line number Diff line number Diff line change 1
-
2
1
:mod: `gdbm ` --- GNU's reinterpretation of dbm
3
2
=============================================
4
3
5
4
.. module :: gdbm
6
5
:platform: Unix
7
6
:synopsis: GNU's reinterpretation of dbm.
8
7
8
+ .. note ::
9
+ The :mod: `gdbm ` module has been renamed to :mod: `dbm.gnu ` in Python 3.0. The
10
+ :term: `2to3 ` tool will automatically adapt imports when converting your
11
+ sources to 3.0.
12
+
9
13
10
14
.. index :: module: dbm
11
15
Original file line number Diff line number Diff line change 1
-
2
1
:mod: `whichdb ` --- Guess which DBM module created a database
3
2
============================================================
4
3
5
4
.. module :: whichdb
6
5
:synopsis: Guess which DBM-style module created a given database.
7
6
7
+ .. note ::
8
+ The :mod: `whichdb ` module's only function has been put into the :mod: `dbm `
9
+ module in Python 3.0. The :term: `2to3 ` tool will automatically adapt imports
10
+ when converting your sources to 3.0.
11
+
8
12
9
13
The single function in this module attempts to guess which of the several simple
10
14
database modules available--\ :mod: `dbm `, :mod: `gdbm `, or :mod: `dbhash `\
You can’t perform that action at this time.
0 commit comments