Home | History | Annotate | Download | only in logging

Lines Matching defs:_handlers

201 #shared dictionary _handlers, it needs to acquire the lock. But if configuring,
617 _handlers = weakref.WeakValueDictionary() #map of handler names to handlers
674 if self._name in _handlers:
675 del _handlers[self._name]
678 _handlers[name] = self
774 _handlers, which is used for handler lookup by name. Subclasses
781 if self._name and self._name in _handlers:
782 del _handlers[self._name]