diff options
author | Charles Chan <charleswhchan@users.noreply.github.com> | 2017-10-30 13:35:26 -0700 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2017-10-30 16:35:26 -0400 |
commit | 6342d35390198753a6dd869268711c10e2a55c2c (patch) | |
tree | 9932a582b6369d1e9df965525eb9925d62cdbb79 /memcache.py | |
parent | e45623b31ba4c49ca5b9ae0894aa9b3d1cdf8f7d (diff) | |
download | python-memcached-6342d35390198753a6dd869268711c10e2a55c2c.tar.gz |
Fix typo in get_multi() docstring
Diffstat (limited to 'memcache.py')
-rw-r--r-- | memcache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/memcache.py b/memcache.py index 3e6bd67..1eb43de 100644 --- a/memcache.py +++ b/memcache.py @@ -1141,7 +1141,7 @@ class Client(threading.local): ... key_prefix='pfx_') == {'k1' : 1, 'k2' : 2} 1 - get_mult [ and L{set_multi} ] can take str()-ables like ints / + get_multi [ and L{set_multi} ] can take str()-ables like ints / longs as keys too. Such as your db pri key fields. They're rotored through str() before being passed off to memcache, with or without the use of a key_prefix. In this mode, the |