コード例 #1
0
ファイル: test_utils.py プロジェクト: linets/nova
 def lockb(wait):
     b = utils.InterProcessLock(os.path.join(tmpdir, 'b'))
     with b:
         wait.wait()
コード例 #2
0
ファイル: test_utils.py プロジェクト: linets/nova
 def locka(wait):
     a = utils.InterProcessLock(os.path.join(tmpdir, 'a'))
     with a:
         wait.wait()
     self.completed = True