traceback.TracebackException.msg
  • References/Python/Python/Runtime

msg For syntax errors - the compiler error message.

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

warnings.resetwarnings() Reset the warnings filter. This discards the effect of all previous calls to filterwarnings()

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

inspect.getgeneratorlocals(generator) Get the mapping of live local variables in generator to their current values

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

warnings.showwarning(message, category, filename, lineno, file=None, line=None) Write a warning to a file. The default implementation

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

warnings.formatwarning(message, category, filename, lineno, line=None) Format a warning the standard way. This returns a string

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

bind_partial(*args, **kwargs) Works the same way as Signature.bind(), but allows the omission of some required

2025-01-10 15:47:30
gc.callbacks
  • References/Python/Python/Runtime

gc.callbacks A list of callbacks that will be invoked by the garbage collector before and after collection. The callbacks will

2025-01-10 15:47:30
sys.dont_write_bytecode
  • References/Python/Python/Runtime

sys.dont_write_bytecode If this is true, Python won’t try to write .pyc files on the import of source modules.

2025-01-10 15:47:30
sys.maxunicode
  • References/Python/Python/Runtime

sys.maxunicode An integer giving the value of the largest Unicode code point, i.e. 1114111 (0x10FFFF

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

parameters An ordered mapping of parameters’ names to the corresponding Parameter objects.

2025-01-10 15:47:30