[Python-checkins] r83369 - in python/branches/py3k: Doc/library/dbm.rst Misc/NEWS

georg.brandl python-checkins at python.org
Sat Jul 31 23:41:43 CEST 2010


Author: georg.brandl
Date: Sat Jul 31 23:41:42 2010
New Revision: 83369

Log:
Fix "Berkeley" name.

Modified:
   python/branches/py3k/Doc/library/dbm.rst
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Doc/library/dbm.rst
==============================================================================
--- python/branches/py3k/Doc/library/dbm.rst	(original)
+++ python/branches/py3k/Doc/library/dbm.rst	Sat Jul 31 23:41:42 2010
@@ -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 <http://www.jcea.es/programacion/pybsddb.htm>`_ to
-the Oracle Berkely DB.
+the Oracle Berkeley DB.
 
 
 .. exception:: error

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Sat Jul 31 23:41:42 2010
@@ -2393,8 +2393,8 @@
   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
 -----


More information about the Python-checkins mailing list