diff options
author | Sean Reifschneider <sean@realgo.com> | 2023-04-16 10:27:24 -0600 |
---|---|---|
committer | Sean Reifschneider <sean@realgo.com> | 2023-04-16 10:27:24 -0600 |
commit | 12f9bf1fb70082e4dc704cfb037e96335bddaa5f (patch) | |
tree | 3f4e539edc68d6431268345af85b9a5f15323c4a /memcache.py | |
parent | 6948c119219733e6cd1ba20e9c6d0909fc177435 (diff) | |
download | python-memcached-12f9bf1fb70082e4dc704cfb037e96335bddaa5f.tar.gz |
Adding test for quit_all
Diffstat (limited to 'memcache.py')
-rw-r--r-- | memcache.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/memcache.py b/memcache.py index 1eefcf7..bbc2149 100644 --- a/memcache.py +++ b/memcache.py @@ -364,7 +364,7 @@ class Client(threading.local): serverData[slab[0]][slab[1]] = item[2] return data - def quit_all(self): + def quit_all(self) -> None: '''Send a "quit" command to all servers and wait for the connection to close.''' for s in self.servers: s.quit() @@ -1480,10 +1480,9 @@ class _Host(object): self.buffer = buf[rlen:] return buf[:rlen] - def quit(self): + def quit(self) -> None: '''Send a "quit" command to remote server and wait for connection to close.''' if self.socket: - # Using self.send_cmd, so no need for '\r\n'. self.send_cmd('quit') # We can't close the local socket until the remote end processes the quit |