Home | History | Annotate | Download | only in logging

Lines Matching defs:_lock

198 #_lock is used to serialize access to shared data structures in this module.
206 _lock = threading.RLock()
208 _lock = None
216 if _lock:
217 _lock.acquire()
223 if _lock:
224 _lock.release()