module documentation

Undocumented

Function defers Decorator to make sure a function always returns a deferred
Function deprecated This is a decorator which can be used to mark functions as deprecated. It will result in a warning being emitted when the function is used.
Function inthread Decorator to call a function in a thread and return a deferred with the result
def defers(func):
Decorator to make sure a function always returns a deferred
def deprecated(use_instead=None):
This is a decorator which can be used to mark functions as deprecated. It will result in a warning being emitted when the function is used.
def inthread(func):
Decorator to call a function in a thread and return a deferred with the result