diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2007-08-23 06:37:46 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2007-08-23 06:37:46 (GMT) |
commit | e5a8dc684ce67578f1bac94c1a76fea659d4ace7 (patch) | |
tree | 2353812318711e6b4b40c2ced0c52dd0a0fb6375 /Lib/bsddb/__init__.py | |
parent | 9a3b014f31cc661fa25ea61f8713f3f5cfb3fe36 (diff) | |
download | cpython-e5a8dc684ce67578f1bac94c1a76fea659d4ace7.zip cpython-e5a8dc684ce67578f1bac94c1a76fea659d4ace7.tar.gz cpython-e5a8dc684ce67578f1bac94c1a76fea659d4ace7.tar.bz2 |
docstring cut n paste correction
Diffstat (limited to 'Lib/bsddb/__init__.py')
-rw-r--r-- | Lib/bsddb/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/__init__.py b/Lib/bsddb/__init__.py index f16db19..df50bce 100644 --- a/Lib/bsddb/__init__.py +++ b/Lib/bsddb/__init__.py @@ -355,7 +355,7 @@ class StringKeys(UserDict.DictMixin, _ExposedProperties): 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 |