select.epoll.fromfd()
  • References/Python/Python/Inputouput

epoll.fromfd(fd) Create an epoll object from a given file descriptor.

2025-01-10 15:47:30
socketserver.BaseServer.server_activate()
  • References/Python/Python/Internet

server_activate() Called by the server’s constructor to activate the server. The default behavior for a TCP server just invokes

2025-01-10 15:47:30
http.server.BaseHTTPRequestHandler.end_headers()
  • References/Python/Python/Internet

end_headers() Adds a blank line (indicating the end of the HTTP headers in the response) to the headers buffer and calls

2025-01-10 15:47:30
multiprocessing.get_start_method()
  • References/Python/Python/Concurrent Execution

multiprocessing.get_start_method(allow_none=False) Return the name of start method used for starting processes.

2025-01-10 15:47:30
unittest.TestResult.addError()
  • References/Python/Python/Development Tools

addError(test, err) Called when the test case test raises an unexpected exception. err is a tuple of the form

2025-01-10 15:47:30
datetime.datetime.hour
  • References/Python/Python/Data Types

datetime.hour In range(24).

2025-01-10 15:47:30
ipaddress.IPv4Network.with_hostmask
  • References/Python/Python/Internet

with_hostmask A string representation of the network, with the mask in host mask notation.

2025-01-10 15:47:30
pdb.runcall()
  • References/Python/Python/Debugging & Profiling

pdb.runcall(function, *args, **kwds) Call the function (a function or method object, not a string) with the given arguments

2025-01-10 15:47:30
codecs.ignore_errors()
  • References/Python/Python/Binary Data

codecs.ignore_errors(exception) Implements the 'ignore' error handling: malformed data is ignored and encoding

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

window.deleteln() Delete the line under the cursor. All following lines are moved up by one line.

2025-01-10 15:47:30