From: Georg Brandl Date: Sat, 31 Jul 2010 21:41:42 +0000 (+0000) Subject: Fix "Berkeley" name. X-Git-Tag: v3.2a2~592 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb1901529dd7fa4345b8792fa166415a79494179;p=python Fix "Berkeley" name. --- diff --git a/Doc/library/dbm.rst b/Doc/library/dbm.rst index 8e4cd609f5..6872d793c0 100644 --- a/Doc/library/dbm.rst +++ b/Doc/library/dbm.rst @@ -8,7 +8,7 @@ :mod:`dbm.gnu` or :mod:`dbm.ndbm`. If none of these modules is installed, the slow-but-simple implementation in module :mod:`dbm.dumb` will be used. There is a `third party interface `_ to -the Oracle Berkely DB. +the Oracle Berkeley DB. .. exception:: error diff --git a/Misc/NEWS b/Misc/NEWS index 398f7db6e1..5c3275f1c8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -2393,8 +2393,8 @@ Extension Modules an error. The _PY_STRUCT_FLOAT_COERCE constant has been removed. The version number has been bumped to 0.3. -- Issue #5359: Readd the Berkley-DB detection code to allow _dbm be built - using Berkley-DB. +- Issue #5359: Readd the Berkeley DB detection code to allow _dbm be built + using Berkeley DB. Tests -----