mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Correctly match 'dict.pop' api
This commit is contained in:
parent
8ea887856c
commit
4f3e3ac192
@ -98,10 +98,18 @@ class ExpiringCache(object):
|
||||
|
||||
return entry.value
|
||||
|
||||
def pop(self, key, default=None):
|
||||
value = self._cache.pop(key, SENTINEL)
|
||||
def pop(self, key, default=SENTINEL):
|
||||
"""Removes and returns the value with the given key from the cache.
|
||||
|
||||
If the key isn't in the cache then `default` will be returned if
|
||||
specified, otherwise `KeyError` will get raised.
|
||||
|
||||
Identical functionality to `dict.pop(..)`.
|
||||
"""
|
||||
|
||||
value = self._cache.pop(key, default)
|
||||
if value is SENTINEL:
|
||||
return default
|
||||
raise KeyError(key)
|
||||
|
||||
return value
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user