inspect.isfunction()

inspect.isfunction(object) Return true if the object is a Python function, which includes functions created by a

2016-10-07 17:35:04
inspect.Signature.bind()

bind(*args, **kwargs) Create a mapping from positional and keyword arguments to parameters. Returns BoundArguments

2016-10-07 17:35:07
contextlib.ExitStack.pop_all()

pop_all() Transfers the callback stack to a fresh ExitStack instance and returns it. No callbacks are invoked by

2016-10-07 17:29:21
sys.abiflags

sys.abiflags On POSIX systems where Python was built with the standard configure script, this contains the ABI

2016-10-07 17:43:46
inspect.getclasstree()

inspect.getclasstree(classes, unique=False) Arrange the given list of classes into a hierarchy of nested lists. Where a nested

2016-10-07 17:34:58
sys.displayhook()

sys.displayhook(value) If value is not None, this function prints repr(value) to sys

2016-10-07 17:43:47
sys.tracebacklimit

sys.tracebacklimit When this variable is set to an integer value, it determines the maximum number of levels of traceback information

2016-10-07 17:43:59
warnings.warn()

warnings.warn(message, category=None, stacklevel=1) Issue a warning, or maybe ignore it or raise an exception. The category

2016-10-07 17:47:12
traceback.walk_stack()

traceback.walk_stack(f) Walk a stack following f.f_back from the given frame, yielding the frame and line number

2016-10-07 17:45:14
sys.last_value

sys.last_value sys.last_traceback These three variables are not always defined; they are set when an exception is

2016-10-07 17:43:54