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

gc.is_tracked(obj) Returns True if the object is currently tracked by the garbage collector, False

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

sys.byteorder An indicator of the native byte order. This will have the value 'big' on big-endian (most-significant

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

sys.settrace(tracefunc) Set the system’s trace function, which allows you to implement a Python source code debugger in Python

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

inspect.ismethod(object) Return true if the object is a bound method written in Python.

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

sys.getallocatedblocks() Return the number of memory blocks currently allocated by the interpreter, regardless of their size

2025-01-10 15:47:30
traceback.TracebackException.offset
  • References/Python/Python/Runtime

offset For syntax errors - the offset into the text where the error occurred.

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

sys.exec_prefix A string giving the site-specific directory prefix where the platform-dependent Python files are installed;

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

class abc.ABCMeta Metaclass for defining Abstract Base Classes (ABCs). Use this metaclass to

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

sys.getdefaultencoding() Return the name of the current default string encoding used by the Unicode implementation.

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

sys.setswitchinterval(interval) Set the interpreter’s thread switch interval (in seconds). This floating-point value determines

2025-01-10 15:47:30