__main__

'__main__' is the name of the scope in which top-level code executes. A module’s __name__ is set equal to '__main__' when read from standard input

2016-10-07 17:48:52
sys.get_coroutine_wrapper()

sys.get_coroutine_wrapper() Returns None, or a wrapper set by set_coroutine_wrapper().

2016-10-07 17:43:52
inspect.getattr_static()

inspect.getattr_static(obj, attr, default=None) Retrieve attributes without triggering dynamic lookup via the descriptor protocol

2016-10-07 17:34:58
traceback.format_stack()

traceback.format_stack(f=None, limit=None) A shorthand for format_list(extract_stack(f, limit)).

2016-10-07 17:45:10
inspect.Signature.replace()

replace(*[, parameters][, return_annotation]) Create a new Signature instance based on the instance replace was invoked on.

2016-10-07 17:35:08
traceback.TracebackException.format_exception_only()

format_exception_only() Format the exception part of the traceback. The return value is a generator

2016-10-07 17:45:12
inspect.Signature.return_annotation

return_annotation The “return” annotation for the callable. If the callable has no “return” annotation, this attribute is set

2016-10-07 17:35:09
sys.

sys._debugmallocstats() Print low-level information to stderr about the state of CPython’s memory allocator.

2016-10-07 17:44:01
inspect.isgenerator()

inspect.isgenerator(object) Return true if the object is a generator.

2016-10-07 17:35:04
site.getuserbase()

site.getuserbase() Return the path of the user base directory, USER_BASE. If it is not initialized yet, this function

2016-10-07 17:42:01