threading
index
/usr/sfw/lib/python2.3/threading.py

Thread module emulating a subset of Java's threading model.

 
Modules
       
sys

 
Classes
       
_Verbose(__builtin__.object)
Thread

 
class Thread(_Verbose)
    
Method resolution order:
Thread
_Verbose
__builtin__.object

Methods defined here:
__init__(self, group=None, target=None, name=None, args=(), kwargs={}, verbose=None)
__repr__(self)
getName(self)
isAlive(self)
isDaemon(self)
join(self, timeout=None)
run(self)
setDaemon(self, daemonic)
setName(self, name)
start(self)

Data and other attributes inherited from _Verbose:
__dict__ = <dictproxy object at 0x177d90>
dictionary for instance variables (if defined)
__weakref__ = <attribute '__weakref__' of '_Verbose' objects>
list of weak references to the object (if defined)

 
Functions
       
BoundedSemaphore(*args, **kwargs)
Condition(*args, **kwargs)
Event(*args, **kwargs)
Lock = allocate_lock(...)
allocate_lock() -> lock object
(allocate() is an obsolete synonym)
 
Create a new lock object.  See LockType.__doc__ for information about locks.
RLock(*args, **kwargs)
Semaphore(*args, **kwargs)
Timer(*args, **kwargs)
activeCount()
currentThread()
enumerate()
setprofile(func)
settrace(func)

 
Data
        __all__ = ['activeCount', 'Condition', 'currentThread', 'enumerate', 'Event', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread', 'Timer', 'setprofile', 'settrace']