Lock
from direct.stdpy.threading import Lock
This class provides a wrapper around Panda's Mutex object. The wrapper is designed to emulate Python's own threading.Lock object.
Inheritance:
Lock
:
Methods of Lock:
__exit__
__init__
acquire
__exit__
def __exit__(self, t, v, tb)
Undocumented function.
__init__
def __init__(self, name="PythonLock")
Undocumented function.
acquire
def acquire(self, blocking=True)
Undocumented function.