summary refs log tree commit diff
path: root/synapse/util/caches
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2018-05-30 12:44:46 +1000
committerGitHub <noreply@github.com>2018-05-30 12:44:46 +1000
commitdebff7ae092231652d5bb937845f316bcc72f845 (patch)
tree51e39c6acde568437807ee40c32b6f211b13e365 /synapse/util/caches
parentUpdate some comments and docstrings in SyncHandler (diff)
parentpep8 (diff)
downloadsynapse-debff7ae092231652d5bb937845f316bcc72f845.tar.xz
Merge pull request #3281 from NotAFile/py3-six-isinstance
remaining isintance fixes
Diffstat (limited to 'synapse/util/caches')
-rw-r--r--synapse/util/caches/descriptors.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/synapse/util/caches/descriptors.py b/synapse/util/caches/descriptors.py

index 8a9dcb2fc2..f4e2c30088 100644 --- a/synapse/util/caches/descriptors.py +++ b/synapse/util/caches/descriptors.py
@@ -31,6 +31,9 @@ import functools import inspect import threading +from six import string_types, itervalues +import six + logger = logging.getLogger(__name__) @@ -205,7 +208,7 @@ class Cache(object): def invalidate_all(self): self.check_thread() self.cache.clear() - for entry in self._pending_deferred_cache.itervalues(): + for entry in itervalues(self._pending_deferred_cache): entry.invalidate() self._pending_deferred_cache.clear() @@ -392,9 +395,10 @@ class CacheDescriptor(_CacheDescriptorBase): ret.addErrback(onErr) - # If our cache_key is a string, try to convert to ascii to save - # a bit of space in large caches - if isinstance(cache_key, basestring): + # If our cache_key is a string on py2, try to convert to ascii + # to save a bit of space in large caches. Py3 does this + # internally automatically. + if six.PY2 and isinstance(cache_key, string_types): cache_key = to_ascii(cache_key) result_d = ObservableDeferred(ret, consumeErrors=True)