mirror of
https://github.com/kenzok8/small-package.git
synced 2026-02-07 23:27:13 +08:00
update-12.11
This commit is contained in:
@@ -8,8 +8,8 @@ include $(TOPDIR)/rules.mk
|
||||
LUCI_TITLE:=LuCI support for SSR Mudb Server
|
||||
LUCI_DEPENDS:=+libsodium +luci-lib-jsonc +python3
|
||||
LUCI_PKGARCH:=all
|
||||
PKG_VERSION:=10
|
||||
PKG_DATE:=20200619
|
||||
PKG_VERSION:=11
|
||||
PKG_DATE:=20211211
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ except:
|
||||
|
||||
SWEEP_MAX_ITEMS = 1024
|
||||
|
||||
class LRUCache(collections.MutableMapping):
|
||||
class LRUCache(collections.abc.MutableMapping):
|
||||
"""This class is not thread safe"""
|
||||
|
||||
def __init__(self, timeout=60, close_callback=None, *args, **kwargs):
|
||||
|
||||
@@ -109,7 +109,7 @@ class OrderedDict(dict):
|
||||
for k in self:
|
||||
yield (k, self[k])
|
||||
|
||||
update = collections.MutableMapping.update
|
||||
update = collections.abc.MutableMapping.update
|
||||
|
||||
__update = update # let subclasses override update without breaking __init__
|
||||
|
||||
|
||||
Reference in New Issue
Block a user