[Python-3000-checkins] r57314 - python/branches/py3k/Lib/bsddb/__init__.py

gregory.p.smith python-3000-checkins at python.org
Thu Aug 23 08:37:47 CEST 2007


Author: gregory.p.smith
Date: Thu Aug 23 08:37:46 2007
New Revision: 57314

Modified:
   python/branches/py3k/Lib/bsddb/__init__.py
Log:
docstring cut n paste correction


Modified: python/branches/py3k/Lib/bsddb/__init__.py
==============================================================================
--- python/branches/py3k/Lib/bsddb/__init__.py	(original)
+++ python/branches/py3k/Lib/bsddb/__init__.py	Thu Aug 23 08:37:46 2007
@@ -355,7 +355,7 @@
 
 class StringValues(UserDict.DictMixin, _ExposedProperties):
     """Wrapper around DB object that automatically encodes
-    all keys as UTF-8; the keys must be strings."""
+    and decodes all values as UTF-8; input values must be strings."""
 
     def __init__(self, db):
         self.db = db


More information about the Python-3000-checkins mailing list