summaryrefslogtreecommitdiff
path: root/memcache.py
diff options
context:
space:
mode:
authorRomuald Brunet <romuald@gandi.net>2016-12-01 14:56:51 +0100
committerRomuald Brunet <romuald@gandi.net>2016-12-01 14:56:51 +0100
commit44f95a2c421ffc739e84524351b9f4f7d78014d1 (patch)
treecf207f2ba04d91364096b7a90680853853e5830b /memcache.py
parentb13d6fcb7164a0c25c1798fcd409bf775a9005b3 (diff)
downloadpython-memcached-44f95a2c421ffc739e84524351b9f4f7d78014d1.tar.gz
Fix some typos in docstrings
Diffstat (limited to 'memcache.py')
-rw-r--r--memcache.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/memcache.py b/memcache.py
index 9823a2f..b9ccb7b 100644
--- a/memcache.py
+++ b/memcache.py
@@ -729,9 +729,9 @@ class Client(threading.local):
routine. If the value being cached is a string, then the
length of the string is measured, else if the value is an
object, then the length of the pickle result is measured. If
- the resulting attempt at compression yeilds a larger string
+ the resulting attempt at compression yields a larger string
than the input, then it is discarded. For backwards
- compatability, this parameter defaults to 0, indicating don't
+ compatibility, this parameter defaults to 0, indicating don't
ever try to compress.
@param noreply: optional parameter instructs the server to not
@@ -766,9 +766,9 @@ class Client(threading.local):
routine. If the value being cached is a string, then the
length of the string is measured, else if the value is an
object, then the length of the pickle result is measured. If
- the resulting attempt at compression yeilds a larger string
+ the resulting attempt at compression yields a larger string
than the input, then it is discarded. For backwards
- compatability, this parameter defaults to 0, indicating don't
+ compatibility, this parameter defaults to 0, indicating don't
ever try to compress.
@param noreply: optional parameter instructs the server to not
@@ -889,9 +889,9 @@ class Client(threading.local):
routine. If the value being cached is a string, then the
length of the string is measured, else if the value is an
object, then the length of the pickle result is
- measured. If the resulting attempt at compression yeilds a
+ measured. If the resulting attempt at compression yields a
larger string than the input, then it is discarded. For
- backwards compatability, this parameter defaults to 0,
+ backwards compatibility, this parameter defaults to 0,
indicating don't ever try to compress.
@param noreply: optional parameter instructs the server to not
@@ -1186,7 +1186,7 @@ class Client(threading.local):
prefix.
@return: A dictionary of key/value pairs that were
- available. If key_prefix was provided, the keys in the retured
+ available. If key_prefix was provided, the keys in the returned
dictionary will not have it present.
'''