sys.prefix
  • References/Python/Python/Runtime

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

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
fpectl.FloatingPointError
  • References/Python/Python/Runtime

exception fpectl.FloatingPointError After turnon_sigfpe() has been executed, a floating point operation that raises

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

name The name of the parameter as a string. The name must be a valid Python identifier.

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

inspect.getsource(object) Return the text of the source code for an object. The argument may be a module, class, method, function

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

inspect.unwrap(func, *, stop=None) Get the object wrapped by func. It follows the chain of __wrapped__

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
atexit.register()
  • References/Python/Python/Runtime

atexit.register(func, *args, **kargs) Register func as a function to be executed at termination. Any optional arguments

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

sysconfig.get_scheme_names() Return a tuple containing all schemes currently supported in sysconfig.

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