summaryrefslogtreecommitdiff
path: root/Modules/Setup.dist
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-26 10:29:35 +0000
committerGeorg Brandl <georg@python.org>2008-05-26 10:29:35 +0000
commit7775a1f3aa8166b22293d63b5a7715bbcfa35054 (patch)
tree14340ef392976deb444b666f90c6f7efed9b8b62 /Modules/Setup.dist
parent6487a3aa1026c275985d1ae0f7f7bcdde43611d2 (diff)
downloadcpython-7775a1f3aa8166b22293d63b5a7715bbcfa35054.tar.gz
Create the dbm package from PEP 3108. #2881.
Diffstat (limited to 'Modules/Setup.dist')
-rw-r--r--Modules/Setup.dist8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist
index 6c201c9205..88c85b517b 100644
--- a/Modules/Setup.dist
+++ b/Modules/Setup.dist
@@ -294,8 +294,8 @@ _symtable symtablemodule.c
# Modules that provide persistent dictionary-like semantics. You will
# probably want to arrange for at least one of them to be available on
# your machine, though none are defined by default because of library
-# dependencies. The Python module anydbm.py provides an
-# implementation independent wrapper for these; dumbdbm.py provides
+# dependencies. The Python module dbm/__init__.py provides an
+# implementation independent wrapper for these; dbm/dumb.py provides
# similar functionality (but slower of course) implemented in Python.
# The standard Unix dbm module has been moved to Setup.config so that
@@ -305,13 +305,13 @@ _symtable symtablemodule.c
#
# First, look at Setup.config; configure may have set this for you.
-#dbm dbmmodule.c # dbm(3) may require -lndbm or similar
+#_dbm _dbmmodule.c # dbm(3) may require -lndbm or similar
# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
#
# First, look at Setup.config; configure may have set this for you.
-#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
+#_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
# Sleepycat Berkeley DB interface.