Home | History | Annotate | Download | only in python2.7

Lines Matching full:rlock

31            'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
113 def RLock(*args, **kwargs):
247 If the lock argument is given and not None, it must be a Lock or RLock
248 object, and it is used as the underlying lock. Otherwise, a new RLock object
262 lock = RLock()
323 When the underlying lock is an RLock, it is not released using its
326 of the RLock class is used, which really unlocks it even when it has
1252 self.mon = RLock()