sys.ps2

sys.ps2 Strings specifying the primary and secondary prompt of the interpreter. These are only defined if the interpreter is

2016-10-07 17:43:56
site.addsitedir()

site.addsitedir(sitedir, known_paths=None) Add a directory to sys.path and process its .pth files. Typically used

2016-10-07 17:42:01
inspect.iscode()

inspect.iscode(object) Return true if the object is a code.

2016-10-07 17:35:03
inspect.getsourcelines()

inspect.getsourcelines(object) Return a list of source lines and starting line number for an object. The argument may be a module

2016-10-07 17:35:02
sys.setprofile()

sys.setprofile(profilefunc) Set the system’s profile function, which allows you to implement a Python source code profiler in

2016-10-07 17:43:57
inspect.getmembers()

inspect.getmembers(object[, predicate]) Return all the members of an object in a list of (name, value) pairs sorted by name

2016-10-07 17:35:01
inspect.getmro()

inspect.getmro(cls) Return a tuple of class cls’s base classes, including cls, in method resolution order. No class appears

2016-10-07 17:35:01
inspect.signature()

inspect.signature(callable, *, follow_wrapped=True) Return a Signature object for the given callable:

2016-10-07 17:35:07
traceback.print_stack()

traceback.print_stack(f=None, limit=None, file=None) Print up to limit stack trace entries (starting from the invocation

2016-10-07 17:45:11
traceback.TracebackException.

__suppress_context__ The __suppress_context__ value from the original exception.

2016-10-07 17:45:13