Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Data Structures | |
class | _Verbose |
class | _RLock |
class | _Condition |
class | _Semaphore |
class | _BoundedSemaphore |
class | _Event |
class | Thread |
class | _Timer |
class | _MainThread |
class | _DummyThread |
Functions | |
def | RLock |
def | Condition |
def | Semaphore |
def | BoundedSemaphore |
def | Event |
def | Timer |
def | currentThread |
def | activeCount |
def | enumerate |
Variables | |
_sys = sys | |
_time = time.time | |
_sleep = time.sleep | |
_start_new_thread = thread.start_new_thread | |
_allocate_lock = thread.allocate_lock | |
_get_ident = thread.get_ident | |
ThreadError = thread.error | |
_print_exc = traceback.print_exc | |
_StringIO = StringIO.StringIO | |
int | _VERBOSE = 0 |
Lock = _allocate_lock | |
int | _counter = 0 |
tuple | _active_limbo_lock = _allocate_lock() |
dictionary | _active = {} |
dictionary | _limbo = {} |
mon | |
rc | |
wc | |
limit | |
queue | |
quota | |
count | |
Proposed new threading module, emulating a subset of Java's threading model.
def threading.activeCount | ( | ) |
Definition at line 588 of file threading.py.
def threading.BoundedSemaphore | ( | args, | |
kwargs | |||
) |
Definition at line 287 of file threading.py.
def threading.Condition | ( | args, | |
kwargs | |||
) |
Definition at line 135 of file threading.py.
def threading.currentThread | ( | ) |
def threading.enumerate | ( | ) |
def threading.Event | ( | args, | |
kwargs | |||
) |
Definition at line 302 of file threading.py.
def threading.RLock | ( | args, | |
kwargs | |||
) |
Definition at line 64 of file threading.py.
def threading.Semaphore | ( | args, | |
kwargs | |||
) |
Definition at line 245 of file threading.py.
def threading.Timer | ( | args, | |
kwargs | |||
) |
Definition at line 490 of file threading.py.
dictionary _active = {} |
Definition at line 343 of file threading.py.
tuple _active_limbo_lock = _allocate_lock() |
Definition at line 342 of file threading.py.
_allocate_lock = thread.allocate_lock |
Definition at line 19 of file threading.py.
int _counter = 0 |
Definition at line 335 of file threading.py.
_get_ident = thread.get_ident |
Definition at line 20 of file threading.py.
dictionary _limbo = {} |
Definition at line 344 of file threading.py.
_print_exc = traceback.print_exc |
Definition at line 24 of file threading.py.
_sleep = time.sleep |
Definition at line 15 of file threading.py.
_start_new_thread = thread.start_new_thread |
Definition at line 18 of file threading.py.
_StringIO = StringIO.StringIO |
Definition at line 27 of file threading.py.
_sys = sys |
Definition at line 11 of file threading.py.
_time = time.time |
Definition at line 14 of file threading.py.
int _VERBOSE = 0 |
Definition at line 33 of file threading.py.
count |
Definition at line 664 of file threading.py.
limit |
Definition at line 617 of file threading.py.
Lock = _allocate_lock |
Definition at line 62 of file threading.py.
mon |
Definition at line 614 of file threading.py.
queue |
Definition at line 618 of file threading.py.
quota |
Definition at line 648 of file threading.py.
rc |
Definition at line 615 of file threading.py.
ThreadError = thread.error |
Definition at line 21 of file threading.py.
wc |
Definition at line 616 of file threading.py.