mirror of
https://github.com/django/django.git
synced 2025-12-03 00:26:25 +00:00
Refs #27318 -- Made DummyCache.set_many() return a list for consistency with other backends.
This commit is contained in:
parent
03049fb8d9
commit
abacd09f07
2 changed files with 3 additions and 3 deletions
2
django/core/cache/backends/dummy.py
vendored
2
django/core/cache/backends/dummy.py
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue