App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Classes | Functions | Variables
google.appengine.dist27.threading Namespace Reference

Classes

class  _BoundedSemaphore
 
class  _Condition
 
class  _DummyThread
 
class  _Event
 
class  _MainThread
 
class  _RLock
 
class  _Semaphore
 
class  _Timer
 
class  _Verbose
 
class  Thread
 

Functions

def setprofile
 
def settrace
 
def RLock
 
def Condition
 
def Semaphore
 
def BoundedSemaphore
 
def Event
 
def Timer
 
def currentThread
 
def activeCount
 
def enumerate
 

Variables

list __all__
 
 _start_new_thread = thread.start_new_thread
 
 _allocate_lock = thread.allocate_lock
 
 _get_ident = thread.get_ident
 
 ThreadError = thread.error
 
string module = 'threading'
 
 _VERBOSE = False
 
 _profile_hook = None
 
 _trace_hook = None
 
 Lock = _allocate_lock
 
int _counter = 0
 
tuple _active_limbo_lock = _allocate_lock()
 
dictionary _active = {}
 
dictionary _limbo = {}
 
 current_thread = currentThread
 
 active_count = activeCount
 
tuple _shutdown = _MainThread()
 
 mon
 
 rc
 
 wc
 
 limit
 
 queue
 
 quota
 
 count
 

Detailed Description

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

Variable Documentation

list google.appengine.dist27.threading.__all__
Initial value:
1 = ['activeCount', 'active_count', 'Condition', 'currentThread',
2  'current_thread', 'enumerate', 'Event',
3  'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
4  'Timer', 'setprofile', 'settrace', 'local', 'stack_size']