Rename Model._write_lock → Model.write_lock
This commit is contained in:
parent
0f6f3bce98
commit
c0118c4e28
|
@ -77,7 +77,7 @@ class ModelFilter(ModelProxy):
|
|||
) -> None:
|
||||
"""Recheck every item to decide if they should be filtered out."""
|
||||
|
||||
with self._write_lock:
|
||||
with self.write_lock:
|
||||
take_out = []
|
||||
bring_back = []
|
||||
|
||||
|
|
|
@ -39,9 +39,9 @@ class Model(MutableMapping):
|
|||
|
||||
def __init__(self, sync_id: Optional[SyncId]) -> None:
|
||||
self.sync_id: Optional[SyncId] = sync_id
|
||||
self.write_lock: RLock = RLock()
|
||||
self._data: Dict[Any, "ModelItem"] = {}
|
||||
self._sorted_data: List["ModelItem"] = blist()
|
||||
self._write_lock: RLock = RLock()
|
||||
|
||||
self.take_items_ownership: bool = True
|
||||
|
||||
|
@ -79,7 +79,7 @@ class Model(MutableMapping):
|
|||
value: "ModelItem",
|
||||
_changed_fields: Optional[Dict[str, Any]] = None,
|
||||
) -> None:
|
||||
with self._write_lock:
|
||||
with self.write_lock:
|
||||
existing = self._data.get(key)
|
||||
new = value
|
||||
|
||||
|
@ -133,7 +133,7 @@ class Model(MutableMapping):
|
|||
|
||||
|
||||
def __delitem__(self, key) -> None:
|
||||
with self._write_lock:
|
||||
with self.write_lock:
|
||||
item = self._data[key]
|
||||
|
||||
if self.sync_id and self.take_items_ownership:
|
||||
|
|
|
@ -49,7 +49,7 @@ class ModelItem:
|
|||
|
||||
fields = {name: self.serialize_field(name)}
|
||||
|
||||
with parent._write_lock:
|
||||
with parent.write_lock:
|
||||
index_then = parent._sorted_data.index(self)
|
||||
parent._sorted_data.sort()
|
||||
index_now = parent._sorted_data.index(self)
|
||||
|
|
Loading…
Reference in New Issue
Block a user