pathlib.Path.is_dir()
  • References/Python/Python/File & Directory Access

Path.is_dir() Return True if the path points to a directory (or a symbolic link pointing to a directory), False

2025-01-10 15:47:30
shutil.copyfileobj()
  • References/Python/Python/File & Directory Access

shutil.copyfileobj(fsrc, fdst[, length]) Copy the contents of the file-like object fsrc to the file-like object fdst

2025-01-10 15:47:30
xmlrpc.server.CGIXMLRPCRequestHandler.register_multicall_functions()
  • References/Python/Python/Internet

CGIXMLRPCRequestHandler.register_multicall_functions() Register the XML-RPC multicall function system.multicall

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

inspect.formatargspec(args[, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations[, formatarg, formatvarargs, formatvarkw, formatvalue, formatreturns,

2025-01-10 15:47:30
int.bit_length()
  • References/Python/Python/Built-in Types

int.bit_length() Return the number of bits necessary to represent an integer in binary, excluding the sign and leading zeros:

2025-01-10 15:47:30
pathlib.Path.glob()
  • References/Python/Python/File & Directory Access

Path.glob(pattern) Glob the given pattern in the directory represented by this path, yielding all matching files (of

2025-01-10 15:47:30
socket.socket.recv_into()
  • References/Python/Python/Networking

socket.recv_into(buffer[, nbytes[, flags]]) Receive up to nbytes bytes from the socket, storing the data into a buffer

2025-01-10 15:47:30
os.path.lexists()
  • References/Python/Python/File & Directory Access

os.path.lexists(path) Return True if path refers to an existing path. Returns True for broken

2025-01-10 15:47:30
locale.delocalize()
  • References/Python/Python/Internationalization

locale.delocalize(string) Converts a string into a normalized number string, following the LC_NUMERIC settings

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

inspect.ismodule(object) Return true if the object is a module.

2025-01-10 15:47:30