operator.ipow()
  • References/Python/Python/Functional Programming

operator.ipow(a, b) operator.__ipow__(a, b) a = ipow(a, b) is equivalent to a **= b.

2025-01-10 15:47:30
doctest.DocTestParser.get_doctest()
  • References/Python/Python/Development Tools

get_doctest(string, globs, name, filename, lineno) Extract all doctest examples from the given string, and collect them into

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

os.sched_yield() Voluntarily relinquish the CPU.

2025-01-10 15:47:30
queue.Full
  • References/Python/Python/Concurrent Execution

exception queue.Full Exception raised when non-blocking put() (or put_nowait()) is called on a Queue

2025-01-10 15:47:30
mimetypes.MimeTypes.types_map
  • References/Python/Python/Internet Data

MimeTypes.types_map Tuple containing two dictionaries, mapping filename extensions to MIME types: the first dictionary is for

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

fma(x, y, z) Returns x multiplied by y, plus z.

2025-01-10 15:47:30
logging.handlers.BufferingHandler.flush()
  • References/Python/Python/Logging

flush() You can override this to implement custom flushing behavior. This version just zaps the buffer to empty.

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

ssl.match_hostname(cert, hostname) Verify that cert (in decoded format as returned by SSLSocket.getpeercert())

2025-01-10 15:47:30
asyncore.file_dispatcher
  • References/Python/Python/Networking

class asyncore.file_dispatcher A file_dispatcher takes a file descriptor or file object

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

platform.version() Returns the system’s release version, e.g. '#3 on degas'. An empty string is returned if the

2025-01-10 15:47:30