Exemplo n.º 1
0
 def lockb(wait):
     b = utils.InterProcessLock(os.path.join(tmpdir, 'b'))
     with b:
         wait.wait()
Exemplo n.º 2
0
 def locka(wait):
     a = utils.InterProcessLock(os.path.join(tmpdir, 'a'))
     with a:
         wait.wait()
     self.completed = True