(self, obj)
| 57 | # --- mutation helpers (called by SharedInformer) --- |
| 58 | |
| 59 | def _put(self, obj): |
| 60 | key = self._key_func(obj) |
| 61 | with self._rlock: |
| 62 | self._objects[key] = obj |
| 63 | |
| 64 | def _remove(self, obj): |
| 65 | key = self._key_func(obj) |
no outgoing calls