Returns a recursive lock object
(self)
| 68 | return Lock(ctx=self.get_context()) |
| 69 | |
| 70 | def RLock(self): |
| 71 | '''Returns a recursive lock object''' |
| 72 | from .synchronize import RLock |
| 73 | return RLock(ctx=self.get_context()) |
| 74 | |
| 75 | def Condition(self, lock=None): |
| 76 | '''Returns a condition object''' |