diff options
| author | Adam Johnson <me@adamj.eu> | 2017-10-30 15:25:33 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-10-30 12:24:29 -0400 |
| commit | ea901eb9ad951b551ef28ab6c68296ca5888a1cb (patch) | |
| tree | 179a44b5be1d54de41563b73bad497b673389e1b /django | |
| parent | 6b5f2e3b7951c7cb27a316779e9dbdf12bd95726 (diff) | |
[2.0.x] Refs #27318 -- Made DummyCache.set_many() return a list for consistency with other backends.
Backport of abacd09f07f4bb0aa1a3a32bc6e3c3570fa76912 from master
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/cache/backends/dummy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/cache/backends/dummy.py b/django/core/cache/backends/dummy.py index d1aea0a325..7957df8072 100644 --- a/django/core/cache/backends/dummy.py +++ b/django/core/cache/backends/dummy.py @@ -34,7 +34,7 @@ class DummyCache(BaseCache): return False def set_many(self, data, timeout=DEFAULT_TIMEOUT, version=None): - pass + return [] def delete_many(self, keys, version=None): pass |
