sys.warnoptions
  • References/Python/Python/Runtime

sys.warnoptions This is an implementation detail of the warnings framework; do not modify this value. Refer to the

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

contextlib.redirect_stderr(new_target) Similar to redirect_stdout() but redirecting

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

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

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

sys.__stdout__ sys.__stderr__ These objects contain the original values of stdin, stderr

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

sys.modules This is a dictionary that maps module names to modules which have already been loaded. This can be manipulated to

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

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

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

gc.get_debug() Return the debugging flags currently set.

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

gc.disable() Disable automatic garbage collection.

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

inspect.isabstract(object) Return true if the object is an abstract base class.

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

sysconfig.get_platform() Return a string that identifies the current platform. This is used

2025-01-10 15:47:30