inspect.getfile()

inspect.getfile(object) Return the name of the (text or binary) file in which an object was defined. This will fail with a

2016-10-07 17:35:00
inspect.iscoroutinefunction()

inspect.iscoroutinefunction(object) Return true if the object is a coroutine function

2016-10-07 17:35:04
sys.getallocatedblocks()

sys.getallocatedblocks() Return the number of memory blocks currently allocated by the interpreter, regardless of their size

2016-10-07 17:43:50
traceback.print_tb()

traceback.print_tb(tb, limit=None, file=None) Print up to limit stack trace entries from traceback object tb

2016-10-07 17:45:11
sys.getdefaultencoding()

sys.getdefaultencoding() Return the name of the current default string encoding used by the Unicode implementation.

2016-10-07 17:43:50
sys.executable

sys.executable A string giving the absolute path of the executable binary for the Python interpreter, on systems where this

2016-10-07 17:43:48
warnings.filterwarnings()

warnings.filterwarnings(action, message='', category=Warning, module='', lineno=0, append=False) Insert an entry into the list

2016-10-07 17:47:11
traceback.TracebackException.format()

format(*, chain=True) Format the exception. If chain is not True, __cause__

2016-10-07 17:45:12
sys.base_prefix

sys.base_prefix Set during Python startup, before site.py is run, to the same value as prefix. If

2016-10-07 17:43:46
gc.garbage

gc.garbage A list of objects which the collector found to be unreachable but could not be freed (uncollectable objects). Starting

2016-10-07 17:33:28