typing.no_type_check_decorator()
  • References/Python/Python/Development Tools

@typing.no_type_check_decorator(decorator) Decorator to give another decorator the no_type_check() effect.

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

bytearray.join(iterable) Return a bytes or bytearray object which is the concatenation of the binary data sequences in the

2025-01-10 15:47:30
xml.dom.NodeList.item()
  • References/Python/Python/Structured Markup

NodeList.item(i) Return the i‘th item from the sequence, if there is one, or None. The index i

2025-01-10 15:47:30
parser.expr()
  • References/Python/Python/Language

parser.expr(source) The expr() function parses the parameter source as if it were an input to compile(source

2025-01-10 15:47:30
decimal.Decimal.logical_and()
  • References/Python/Python/Numeric & Mathematical

logical_and(other, context=None) logical_and() is a logical operation which takes two logical operands

2025-01-10 15:47:30
string.whitespace
  • References/Python/Python/Text Processing

string.whitespace A string containing all ASCII characters that are considered whitespace. This includes the characters space

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

issuperset(other) set >= other Test whether every element in other is in the set.

2025-01-10 15:47:30
ftplib.error_proto
  • References/Python/Python/Internet

exception ftplib.error_proto Exception raised when a reply is received from the server that does not fit the response specifications

2025-01-10 15:47:30
getopt.getopt()
  • References/Python/Python/Operating System

getopt.getopt(args, shortopts, longopts=[]) Parses command line options and parameter list. args is the argument list

2025-01-10 15:47:30
time.time()
  • References/Python/Python/Operating System

time.time() Return the time in seconds since the epoch as a floating point number. Note that even though the time is always

2025-01-10 15:47:30