sys.last_value
  • References/Python/Python/Runtime

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

2025-01-10 15:47:30
inspect.Parameter.default
  • References/Python/Python/Runtime

default The default value for the parameter. If the parameter has no default value, this attribute is set to Parameter

2025-01-10 15:47:30
sys.intern()
  • References/Python/Python/Runtime

sys.intern(string) Enter string in the table of “interned” strings and return the interned string – which is string

2025-01-10 15:47:30
gc.get_count()
  • References/Python/Python/Runtime

gc.get_count() Return the current collection counts as a tuple of (count0, count1, count2).

2025-01-10 15:47:30
inspect.Parameter
  • References/Python/Python/Runtime

class inspect.Parameter(name, kind, *, default=Parameter.empty, annotation=Parameter.empty) Parameter objects are immutable

2025-01-10 15:47:30
atexit.unregister()
  • References/Python/Python/Runtime

atexit.unregister(func) Remove func from the list of functions to be run at interpreter shutdown. After calling

2025-01-10 15:47:30
sys.gettrace()
  • References/Python/Python/Runtime

sys.gettrace() Get the trace function as set by settrace().

2025-01-10 15:47:30
traceback.walk_stack()
  • References/Python/Python/Runtime

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

2025-01-10 15:47:30
traceback.StackSummary.extract()
  • References/Python/Python/Runtime

classmethod extract(frame_gen, *, limit=None, lookup_lines=True, capture_locals=False) Construct a StackSummary

2025-01-10 15:47:30
inspect.getargspec()
  • References/Python/Python/Runtime

inspect.getargspec(func) Get the names and default values of a Python function’s arguments. A named

2025-01-10 15:47:30