gc.set_debug()
  • References/Python/Python/Runtime

gc.set_debug(flags) Set the garbage collection debugging flags. Debugging information will be written to sys.stderr

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

sys.float_repr_style A string indicating how the

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

sys.getwindowsversion() Return a named tuple describing the Windows version currently running. The named elements are major

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

sys.version A string containing the version number of the Python interpreter plus additional information on the build number

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

gc.collect(generations=2) With no arguments, run a full collection. The optional argument generation may be an integer

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

replace(*[, name][, kind][, default][, annotation]) Create a new Parameter instance based on the instance replaced was invoked

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

Source code: Lib/__future__

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

sys.getrecursionlimit() Return the current value of the recursion limit, the maximum depth of the Python interpreter stack.

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