diff options
author | Erik Johnston <erik@matrix.org> | 2017-02-02 13:50:22 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-02-02 13:50:22 +0000 |
commit | 9efcc3f3be1f56be8ffdb3172d6908d55028cc61 (patch) | |
tree | 5374f6d6c3dff66c06cd80e3195f05d4ecf217f9 /synapse/util/caches/descriptors.py | |
parent | Comment (diff) | |
download | synapse-9efcc3f3be1f56be8ffdb3172d6908d55028cc61.tar.xz |
Comment
Diffstat (limited to 'synapse/util/caches/descriptors.py')
-rw-r--r-- | synapse/util/caches/descriptors.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/util/caches/descriptors.py b/synapse/util/caches/descriptors.py index 675bfd5feb..3c6838df16 100644 --- a/synapse/util/caches/descriptors.py +++ b/synapse/util/caches/descriptors.py @@ -478,6 +478,8 @@ class CacheListDescriptor(object): class _CacheContext(namedtuple("_CacheContext", ("cache", "key"))): + # We rely on _CacheContext implementing __eq__ and __hash__ sensibly, + # which namedtuple does for us. def invalidate(self): self.cache.invalidate(self.key) |