Home | History | Annotate | Download | only in Lib

Lines Matching defs:RLock

32            'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
114 def RLock(*args, **kwargs):
248 If the lock argument is given and not None, it must be a Lock or RLock
249 object, and it is used as the underlying lock. Otherwise, a new RLock object
263 lock = RLock()
324 When the underlying lock is an RLock, it is not released using its
327 of the RLock class is used, which really unlocks it even when it has
1245 self.mon = RLock()